Trait unic_char_property::BinaryCharProperty [−][src]
pub trait BinaryCharProperty: CharProperty { fn as_bool(&self) -> bool; fn abbr_name(&self) -> &'static str { ... } fn long_name(&self) -> &'static str { ... } fn human_name(&self) -> &'static str { ... } }
A Character Property with binary values.
Examples: Alphabetic
, Bidi_Mirrored
, White_Space
Required Methods
fn as_bool(&self) -> bool
The boolean value of the property value.
Provided Methods
fn abbr_name(&self) -> &'static str
The abbreviated name of the property value.
fn long_name(&self) -> &'static str
The long name of the property value.
fn human_name(&self) -> &'static str
The human-readable name of the property value.