unic_char_property

Trait PartialCharProperty

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

A Character Property defined for some characters.

Examples: Decomposition_Type, Numeric_Type

Required Methods§

Source

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

The property value for the character, or None.

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§