[][src]Trait unic_char_property::PartialCharProperty

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

A Character Property defined for some characters.

Examples: Decomposition_Type, Numeric_Type

Required methods

fn of(ch: char) -> Option<Self>

The property value for the character, or None.

Loading content...

Implementors

impl<T: TotalCharProperty> PartialCharProperty for T[src]

Loading content...