pub enum CaseMatchMode {
Sensitive,
Insensitive,
AlphanumInsensitive,
}
Variants§
Implementations§
source§impl CaseMatchMode
impl CaseMatchMode
pub fn insensitive(case_insensitive: bool) -> Self
Trait Implementations§
source§impl Clone for CaseMatchMode
impl Clone for CaseMatchMode
source§fn clone(&self) -> CaseMatchMode
fn clone(&self) -> CaseMatchMode
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 CaseMatchMode
impl Debug for CaseMatchMode
source§impl PartialEq for CaseMatchMode
impl PartialEq for CaseMatchMode
source§fn eq(&self, other: &CaseMatchMode) -> bool
fn eq(&self, other: &CaseMatchMode) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for CaseMatchMode
impl Eq for CaseMatchMode
impl StructuralPartialEq for CaseMatchMode
Auto Trait Implementations§
impl Freeze for CaseMatchMode
impl RefUnwindSafe for CaseMatchMode
impl Send for CaseMatchMode
impl Sync for CaseMatchMode
impl Unpin for CaseMatchMode
impl UnwindSafe for CaseMatchMode
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