pub trait CharProperty:
PartialCharProperty
+ Debug
+ Eq
+ Hash {
// Required methods
fn prop_abbr_name() -> &'static str;
fn prop_long_name() -> &'static str;
fn prop_human_name() -> &'static str;
}Expand description
A Character Property, defined for some or all Unicode characters.
Required Methods§
Sourcefn prop_abbr_name() -> &'static str
fn prop_abbr_name() -> &'static str
The abbreviated name of the property.
Sourcefn prop_long_name() -> &'static str
fn prop_long_name() -> &'static str
The long name of the property.
Sourcefn prop_human_name() -> &'static str
fn prop_human_name() -> &'static str
The human-readable name of the property.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".