pub trait PartialCharProperty: Copy {
    fn of(ch: char) -> Option<Self>;
}
Expand description

A Character Property defined for some characters.

Examples: Decomposition_Type, Numeric_Type

Required methods

The property value for the character, or None.

Implementors