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§