pub trait Capitalize: AsRef<str> {
    fn capitalize(&self) -> String;
}

Required methods

Change first character to upper case and the rest to lower case.

Implementors