pub enum CharClassType {
Digits,
Words,
Spaces,
Lowercase,
Uppercase,
Alpha,
Alnum,
Any,
}Variants§
Trait Implementations§
Source§impl Clone for CharClassType
impl Clone for CharClassType
Source§fn clone(&self) -> CharClassType
fn clone(&self) -> CharClassType
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 CharClassType
impl Debug for CharClassType
Source§impl PartialEq for CharClassType
impl PartialEq for CharClassType
Source§fn eq(&self, other: &CharClassType) -> bool
fn eq(&self, other: &CharClassType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for CharClassType
impl StructuralPartialEq for CharClassType
Auto Trait Implementations§
impl Freeze for CharClassType
impl RefUnwindSafe for CharClassType
impl Send for CharClassType
impl Sync for CharClassType
impl Unpin for CharClassType
impl UnsafeUnpin for CharClassType
impl UnwindSafe for CharClassType
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