Struct heck::AsUpperCamelCase
source · pub struct AsUpperCamelCase<T: AsRef<str>>(pub T);
Expand description
This wrapper performs a upper camel case conversion in fmt::Display
.
Example:
use heck::AsUpperCamelCase;
let sentence = "We are not in the least afraid of ruins.";
assert_eq!(format!("{}", AsUpperCamelCase(sentence)), "WeAreNotInTheLeastAfraidOfRuins");
Tuple Fields§
§0: T