pub enum Case {
None,
Camel,
Pascal,
Snake,
}Expand description
Change case of keys
Variants§
None
Use original case for all keys
Camel
Convert all keys to camelCase
Pascal
Convert all keys to PascalCase
Snake
Convert all keys to snake_case
Trait Implementations§
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