unic_char_property

Trait NumericCharProperty

Source
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.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§