pub struct IsAlphanumeric;Expand description
Checks whether the given character is alphanumeric.
Trait Implementations§
Source§impl Clone for IsAlphanumeric
impl Clone for IsAlphanumeric
Source§fn clone(&self) -> IsAlphanumeric
fn clone(&self) -> IsAlphanumeric
Returns a copy 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 IsAlphanumeric
impl Debug for IsAlphanumeric
Source§impl Default for IsAlphanumeric
impl Default for IsAlphanumeric
Source§fn default() -> IsAlphanumeric
fn default() -> IsAlphanumeric
Returns the “default value” for a type. Read more
Source§impl Hash for IsAlphanumeric
impl Hash for IsAlphanumeric
Source§impl Ord for IsAlphanumeric
impl Ord for IsAlphanumeric
Source§fn cmp(&self, other: &IsAlphanumeric) -> Ordering
fn cmp(&self, other: &IsAlphanumeric) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for IsAlphanumeric
impl PartialEq for IsAlphanumeric
Source§impl PartialOrd for IsAlphanumeric
impl PartialOrd for IsAlphanumeric
Source§impl Predicate<char> for IsAlphanumeric
impl Predicate<char> for IsAlphanumeric
Source§type Error = NonAlphanumericError
type Error = NonAlphanumericError
The associated error type which is used to represent checks.
Source§fn check(value: &char) -> Result<(), Self::Error>
fn check(value: &char) -> Result<(), Self::Error>
Checks if the value of type
T satisfies the predicate. Read moreimpl Copy for IsAlphanumeric
impl Eq for IsAlphanumeric
impl StructuralPartialEq for IsAlphanumeric
Auto Trait Implementations§
impl Freeze for IsAlphanumeric
impl RefUnwindSafe for IsAlphanumeric
impl Send for IsAlphanumeric
impl Sync for IsAlphanumeric
impl Unpin for IsAlphanumeric
impl UnwindSafe for IsAlphanumeric
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