pub enum CaseFormat {
Snake,
Camel,
Pascal,
Kebab,
Constant,
Title,
}Expand description
Case format for string conversion
Variants§
Trait Implementations§
Source§impl Clone for CaseFormat
impl Clone for CaseFormat
Source§fn clone(&self) -> CaseFormat
fn clone(&self) -> CaseFormat
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for CaseFormat
Source§impl Debug for CaseFormat
impl Debug for CaseFormat
Source§impl<'de> Deserialize<'de> for CaseFormat
impl<'de> Deserialize<'de> for CaseFormat
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CaseFormat
impl RefUnwindSafe for CaseFormat
impl Send for CaseFormat
impl Sync for CaseFormat
impl Unpin for CaseFormat
impl UnsafeUnpin for CaseFormat
impl UnwindSafe for CaseFormat
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