pub trait ToLowerCamelCase: ToOwned {
// Required method
fn to_lower_camel_case(&self) -> Self::Owned;
}
Expand description
This trait defines a lower camel case conversion.
In lowerCamelCase, word boundaries are indicated by capital letters, excepting the first word.
§Example:
use heck::ToLowerCamelCase;
let sentence = "It is we who built these palaces and cities.";
assert_eq!(sentence.to_lower_camel_case(), "itIsWeWhoBuiltThesePalacesAndCities");
Required Methods§
Sourcefn to_lower_camel_case(&self) -> Self::Owned
fn to_lower_camel_case(&self) -> Self::Owned
Convert this type to lower camel case.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.