valust_utils::casing

Function to_camel

Source
pub fn to_camel(s: impl AsRef<str>) -> String
Expand description

Converts a string to Camel.

Alias for to_case(Case::Camel).

Camel case strings are lowercase, but for every word except the first the first letter is capitalized.