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