pub trait CustomCharProperty<Value>: CharProperty {
    // Required method
    fn actual(&self) -> Value;
}
Expand description

A Character Property with custom values.

Custom values means any non-enumerated, non-numeric value.

Examples: Age property that returns a UnicodeVersion value.

Required Methods§

source

fn actual(&self) -> Value

The actual (inner) value for the property value.

Implementors§