[][src]Trait unic_ucd::StrBidiClass

pub trait StrBidiClass {
    fn has_bidi_explicit(&self) -> bool;
fn has_ltr(&self) -> bool;
fn has_rtl(&self) -> bool; }

Methods for Bidi_Class character properties of string types.

Required methods

fn has_bidi_explicit(&self) -> bool

Whether the string has any explicit bidi formatting character.

fn has_ltr(&self) -> bool

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

fn has_rtl(&self) -> bool

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

Loading content...

Implementations on Foreign Types

impl StrBidiClass for str[src]

Loading content...

Implementors

Loading content...