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.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".