pub enum Sensitivity {
CaseInsensitive,
CaseSensitive,
}
Available on crate feature
hashstrings
only.Expand description
Used to specify whether a Hashstring
should ignore case when comparing strings.
Variants§
CaseInsensitive
Ignore case when comparing strings.
CaseSensitive
Do NOT ignore case when comparing strings.
Auto Trait Implementations§
impl Freeze for Sensitivity
impl RefUnwindSafe for Sensitivity
impl Send for Sensitivity
impl Sync for Sensitivity
impl Unpin for Sensitivity
impl UnwindSafe for Sensitivity
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