Trait unic_char_property::BinaryCharProperty [] [src]

pub trait BinaryCharProperty: CharProperty {
    fn 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

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