#[repr(u64)]pub enum CaseSensitivity {
Sensitive = 0,
Insensitive = 1,
Mixed = 2,
}Expand description
Indicates whether the file name matching algorithm used by the file system should be case-sensitive, case-insensitive, or allow a combination of both styles of matching.
Variants§
Sensitive = 0
Insensitive = 1
Mixed = 2
File system can support requests for both case-sensitive and case-insensitive matching behavior.
Trait Implementations§
Source§impl AsRef<str> for CaseSensitivity
impl AsRef<str> for CaseSensitivity
Source§impl Clone for CaseSensitivity
impl Clone for CaseSensitivity
Source§fn clone(&self) -> CaseSensitivity
fn clone(&self) -> CaseSensitivity
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CaseSensitivity
impl Debug for CaseSensitivity
Source§impl Default for CaseSensitivity
impl Default for CaseSensitivity
Source§impl Display for CaseSensitivity
impl Display for CaseSensitivity
Source§impl FromStr for CaseSensitivity
impl FromStr for CaseSensitivity
Source§impl PartialEq for CaseSensitivity
impl PartialEq for CaseSensitivity
Source§fn eq(&self, other: &CaseSensitivity) -> bool
fn eq(&self, other: &CaseSensitivity) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl TryFrom<&str> for CaseSensitivity
impl TryFrom<&str> for CaseSensitivity
impl Copy for CaseSensitivity
impl Eq for CaseSensitivity
impl StructuralPartialEq for CaseSensitivity
Auto Trait Implementations§
impl Freeze for CaseSensitivity
impl RefUnwindSafe for CaseSensitivity
impl Send for CaseSensitivity
impl Sync for CaseSensitivity
impl Unpin for CaseSensitivity
impl UnsafeUnpin for CaseSensitivity
impl UnwindSafe for CaseSensitivity
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