Struct heck::AsShoutySnekCase
source · [−]Expand description
This wrapper performs a shouty snake case conversion in fmt::Display
.
Example:
use heck::AsShoutySnakeCase;
let sentence = "That world is growing in this minute.";
assert_eq!(format!("{}", AsShoutySnakeCase(sentence)), "THAT_WORLD_IS_GROWING_IN_THIS_MINUTE");
Tuple Fields
0: T
Trait Implementations
Auto Trait Implementations
impl<T> RefUnwindSafe for AsShoutySnakeCase<T> where
T: RefUnwindSafe,
impl<T> Send for AsShoutySnakeCase<T> where
T: Send,
impl<T> Sync for AsShoutySnakeCase<T> where
T: Sync,
impl<T> Unpin for AsShoutySnakeCase<T> where
T: Unpin,
impl<T> UnwindSafe for AsShoutySnakeCase<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