pub trait NumericCharProperty<NumericValue: NumericCharPropertyValue>: CharProperty {
    // Required method
    fn number(&self) -> NumericValue;
}
Expand description

A Character Property with numeric values.

Examples: Numeric_Value, Canonical_Combining_Class

Required Methods§

source

fn number(&self) -> NumericValue

The numeric value for the property value.

Implementors§