pub fn capitalize<T>(s: T) -> Result<String, Error> where
    T: Display
Expand description

Capitalize a value. The first character will be uppercase, all others lowercase.