pub enum CaseStatus {
Lower,
Upper,
Mixed,
}Expand description
Result of a case check.
Variants§
Lower
All-lowercase or no letters.
Upper
All-uppercase.
Mixed
Both lowercase and uppercase letters present (invalid).
Trait Implementations§
Source§impl Clone for CaseStatus
impl Clone for CaseStatus
Source§fn clone(&self) -> CaseStatus
fn clone(&self) -> CaseStatus
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 moreSource§impl Debug for CaseStatus
impl Debug for CaseStatus
Source§impl PartialEq for CaseStatus
impl PartialEq for CaseStatus
Source§fn eq(&self, other: &CaseStatus) -> bool
fn eq(&self, other: &CaseStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for CaseStatus
impl Eq for CaseStatus
impl StructuralPartialEq for CaseStatus
Auto Trait Implementations§
impl Freeze for CaseStatus
impl RefUnwindSafe for CaseStatus
impl Send for CaseStatus
impl Sync for CaseStatus
impl Unpin for CaseStatus
impl UnsafeUnpin for CaseStatus
impl UnwindSafe for CaseStatus
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