Trait unic_ucd::CharBidiClass [] [src]

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

Methods for Bidi_Class character property.

Required Methods

Get BidiClass of the character.

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

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

Implementations on Foreign Types

impl CharBidiClass for char
[src]

[src]

[src]

[src]

Implementors