pub enum CaseMatchMode {
Sensitive,
Insensitive,
AlphanumInsensitive,
}
Expand description
Core matching mode corresponding to function name suffixes (_cs, _ci and _ci_alphanum)
Variants§
Implementations§
Source§impl CaseMatchMode
impl CaseMatchMode
Sourcepub fn insensitive(case_insensitive: bool) -> Self
pub fn insensitive(case_insensitive: bool) -> Self
Determines if case match mode requires the sample string and pattern to be lower-cased
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
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