#[repr(u32)]pub enum CaseMode {
Smart = 0,
Insensitive = 1,
Sensitive = 2,
}Expand description
How the query is matched against names (FmfQueryOptions.case_mode).
Variants§
Smart = 0
Insensitive unless the query contains an uppercase letter.
Insensitive = 1
Case-insensitive matching.
Sensitive = 2
Case-sensitive matching.
Implementations§
Trait Implementations§
impl Copy for CaseMode
impl Eq for CaseMode
impl StructuralPartialEq for CaseMode
Auto Trait Implementations§
impl Freeze for CaseMode
impl RefUnwindSafe for CaseMode
impl Send for CaseMode
impl Sync for CaseMode
impl Unpin for CaseMode
impl UnsafeUnpin for CaseMode
impl UnwindSafe for CaseMode
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