pub fn to_camel(s: impl AsRef<str>) -> String
Converts a string to Camel.
Camel
Alias for to_case(Case::Camel).
to_case(Case::Camel)
Camel case strings are lowercase, but for every word except the first the first letter is capitalized.