pub enum CharType<'a> {
}Expand description
Methods to strip or filter character types within strings and to extract integers or floats Defines character group types with special custom types (Char, Chars, Range, Between)
Variants§
Any
DecDigit
Digit(u32)
Numeric
AlphaNum
Upper
Lower
Alpha
Spaces
Punctuation
Char(char)
Chars(&'a [char])
Range(Range<char>)
Between(char, char)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for CharType<'a>
impl<'a> RefUnwindSafe for CharType<'a>
impl<'a> Send for CharType<'a>
impl<'a> Sync for CharType<'a>
impl<'a> Unpin for CharType<'a>
impl<'a> UnsafeUnpin for CharType<'a>
impl<'a> UnwindSafe for CharType<'a>
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