Enum unicode_bidi::tables::BidiClass [] [src]

pub enum BidiClass {
    AL,
    AN,
    B,
    BN,
    CS,
    EN,
    ES,
    ET,
    FSI,
    L,
    LRE,
    LRI,
    LRO,
    NSM,
    ON,
    PDF,
    PDI,
    R,
    RLE,
    RLI,
    RLO,
    S,
    WS,
}

Represents the Unicode character property Bidi_Class, also known as the bidirectional character type.

Use the bidi_class function to look up the BidiClass of a code point.

http://www.unicode.org/reports/tr9/#Bidirectional_Character_Types

Variants

ALANBBNCSENESETFSILLRELRILRONSMONPDFPDIRRLERLIRLOSWS

Trait Implementations

impl Eq for BidiClass
[src]

impl PartialEq for BidiClass
[src]

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

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

fn ne(&self, other: &Rhs) -> bool
1.0.0

This method tests for !=.

impl Debug for BidiClass
[src]

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

Formats the value using the given formatter.

impl Copy for BidiClass
[src]

impl Clone for BidiClass
[src]

fn clone(&self) -> BidiClass

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more