pub enum CaseType {
Lower = 1,
Upper = 2,
Title = 3,
}
Expand description
The case of a Unicode character
🚧 This code is considered unstable; it may change at any time, in breaking or non-breaking ways,
including in SemVer minor releases. While the serde representation of data structs is guaranteed
to be stable, their Rust representation might not be. Use with caution.
Variants§
Implementations§
Trait Implementations§
impl Copy for CaseType
impl Eq for CaseType
impl StructuralPartialEq for CaseType
Auto Trait Implementations§
impl Freeze for CaseType
impl RefUnwindSafe for CaseType
impl Send for CaseType
impl Sync for CaseType
impl Unpin for CaseType
impl UnwindSafe for CaseType
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