Struct unicode_bidi::InitialProperties [] [src]

pub struct InitialProperties {
    pub initial_classes: Vec<BidiClass>,
    pub paragraphs: Vec<ParagraphInfo>,
}

Output of initial_scan

Fields

initial_classes

The BidiClass of the character at each byte in the text. If a character is multiple bytes, its class will appear multiple times in the vector.

paragraphs

The boundaries and level of each paragraph within the text.

Trait Implementations

Derived Implementations

impl Debug for InitialProperties
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl PartialEq for InitialProperties
[src]

fn eq(&self, __arg_0: &InitialProperties) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, __arg_0: &InitialProperties) -> bool

This method tests for !=.