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 { ... }
}
Expand description

A Character Property with binary values.

Examples: Alphabetic, Bidi_Mirrored, White_Space

Required Methods

The boolean value of the property value.

Provided Methods

The abbreviated name of the property value.

The long name of the property value.

The human-readable name of the property value.

Implementors