Trait unic_ucd_bidi::BidiChar [] [src]

pub trait BidiChar {
    fn bidi_class(self) -> BidiClass;
    fn is_explicit(self) -> bool;
    fn is_ltr(self) -> bool;
    fn is_rtl(self) -> bool;
}

Methods for bidi properties of character types.

Required Methods

Get BidiClass of the character.

Whether the character is an explicit bidi formatting character.

Whether the character has left-to-right (LTR) bidi directionality.

Whether the character has right-to-left (RTL) bidi directionality.

Implementors