Normalization

Trait Normalization 

Source
pub trait Normalization {
    // Required methods
    fn to_nfd(&self) -> String;
    fn to_nfkd(&self) -> String;
    fn to_nfc(&self) -> String;
    fn to_nfkc(&self) -> String;
}

Required Methods§

Source

fn to_nfd(&self) -> String

Source

fn to_nfkd(&self) -> String

Source

fn to_nfc(&self) -> String

Source

fn to_nfkc(&self) -> String

Implementations on Foreign Types§

Source§

impl Normalization for str

Source§

fn to_nfd(&self) -> String

Source§

fn to_nfkd(&self) -> String

Source§

fn to_nfc(&self) -> String

Source§

fn to_nfkc(&self) -> String

Implementors§