pub trait Normalizer {
// Required method
fn nfc(&self, text: &str) -> String;
}Expand description
A Unicode NFC normalizer. Supplied by the caller so the core carries no
Unicode tables; the hard-binding feature provides UnicodeNfc.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".