pub enum Case {
Camel,
Constant,
Kebab,
Lower,
Sentence,
Snake,
Title,
Upper,
UpperCamel,
UpperSnake,
UpperKebab,
}Expand description
case
all case operations come through here as we have to include multiple crates to get the desired behaviour
Variants§
Trait Implementations§
impl Copy for Case
Auto Trait Implementations§
impl Freeze for Case
impl RefUnwindSafe for Case
impl Send for Case
impl Sync for Case
impl Unpin for Case
impl UnwindSafe for Case
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more