Struct heck::AsLowerCamelCase
source · [−]Expand description
This wrapper performs a lower camel case conversion in fmt::Display
.
Example:
use heck::AsLowerCamelCase;
let sentence = "It is we who built these palaces and cities.";
assert_eq!(format!("{}", AsLowerCamelCase(sentence)), "itIsWeWhoBuiltThesePalacesAndCities");
Tuple Fields
0: T
Trait Implementations
Auto Trait Implementations
impl<T> RefUnwindSafe for AsLowerCamelCase<T> where
T: RefUnwindSafe,
impl<T> Send for AsLowerCamelCase<T> where
T: Send,
impl<T> Sync for AsLowerCamelCase<T> where
T: Sync,
impl<T> Unpin for AsLowerCamelCase<T> where
T: Unpin,
impl<T> UnwindSafe for AsLowerCamelCase<T> where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more