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;
}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;
}