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