pub enum PatternChar {
Lowercase,
Uppercase,
Numeric,
Symbol,
}Expand description
Pattern character types
Variants§
Trait Implementations§
Source§impl Clone for PatternChar
impl Clone for PatternChar
Source§fn clone(&self) -> PatternChar
fn clone(&self) -> PatternChar
Returns a duplicate of the value. Read more
1.0.0 · 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 PatternChar
impl Debug for PatternChar
impl Copy for PatternChar
Auto Trait Implementations§
impl Freeze for PatternChar
impl RefUnwindSafe for PatternChar
impl Send for PatternChar
impl Sync for PatternChar
impl Unpin for PatternChar
impl UnwindSafe for PatternChar
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