Skip to main content

Normalizer

Trait Normalizer 

Source
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§

Source

fn nfc(&self, text: &str) -> String

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§