pub struct IsAlphabetic;Expand description
Checks whether the given character is alphabetic.
Trait Implementations§
Source§impl Clone for IsAlphabetic
impl Clone for IsAlphabetic
Source§fn clone(&self) -> IsAlphabetic
fn clone(&self) -> IsAlphabetic
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 IsAlphabetic
impl Debug for IsAlphabetic
Source§impl Default for IsAlphabetic
impl Default for IsAlphabetic
Source§fn default() -> IsAlphabetic
fn default() -> IsAlphabetic
Returns the “default value” for a type. Read more
Source§impl Hash for IsAlphabetic
impl Hash for IsAlphabetic
Source§impl Ord for IsAlphabetic
impl Ord for IsAlphabetic
Source§fn cmp(&self, other: &IsAlphabetic) -> Ordering
fn cmp(&self, other: &IsAlphabetic) -> 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 IsAlphabetic
impl PartialEq for IsAlphabetic
Source§impl PartialOrd for IsAlphabetic
impl PartialOrd for IsAlphabetic
Source§impl Predicate<char> for IsAlphabetic
impl Predicate<char> for IsAlphabetic
Source§type Error = NonAlphabeticError
type Error = NonAlphabeticError
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 IsAlphabetic
impl Eq for IsAlphabetic
impl StructuralPartialEq for IsAlphabetic
Auto Trait Implementations§
impl Freeze for IsAlphabetic
impl RefUnwindSafe for IsAlphabetic
impl Send for IsAlphabetic
impl Sync for IsAlphabetic
impl Unpin for IsAlphabetic
impl UnwindSafe for IsAlphabetic
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