Struct heck::AsUpperCamelCase 
source · [−]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: TTrait Implementations
Auto Trait Implementations
impl<T> RefUnwindSafe for AsUpperCamelCase<T> where
    T: RefUnwindSafe, 
impl<T> Send for AsUpperCamelCase<T> where
    T: Send, 
impl<T> Sync for AsUpperCamelCase<T> where
    T: Sync, 
impl<T> Unpin for AsUpperCamelCase<T> where
    T: Unpin, 
impl<T> UnwindSafe for AsUpperCamelCase<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