Trait unic_ucd_bidi::BidiStr [] [src]

pub trait BidiStr {
    fn has_explicit(&self) -> bool;
    fn has_ltr(&self) -> bool;
    fn has_rtl(&self) -> bool;
}

Methods for bidi properties of string types.

Required Methods

Whether the string has any explicit bidi formatting character.

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

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

Implementors