valust_utils::casing

Function to_pascal

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

Converts a string to Pascal.

Alias for to_case(Case::Pascal).

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