pub trait BinaryCharProperty: CharProperty {
// Required method
fn as_bool(&self) -> bool;
// Provided methods
fn abbr_name(&self) -> &'static str { ... }
fn long_name(&self) -> &'static str { ... }
fn human_name(&self) -> &'static str { ... }
}
Expand description
A Character Property with binary values.
Examples: Alphabetic
, Bidi_Mirrored
, White_Space
Required Methods§
Provided Methods§
sourcefn human_name(&self) -> &'static str
fn human_name(&self) -> &'static str
The human-readable name of the property value.