#[repr(C)]pub enum FILE_INFO_BY_NAME_CLASS {
FileStatByNameInfo = 0,
FileStatLxByNameInfo = 1,
FileCaseSensitiveByNameInfo = 2,
FileStatBasicByNameInfo = 3,
MaximumFileInfoByNameClass = 4,
}
Variants§
FileStatByNameInfo = 0
FileStatLxByNameInfo = 1
FileCaseSensitiveByNameInfo = 2
FileStatBasicByNameInfo = 3
MaximumFileInfoByNameClass = 4
Auto Trait Implementations§
impl Freeze for FILE_INFO_BY_NAME_CLASS
impl RefUnwindSafe for FILE_INFO_BY_NAME_CLASS
impl Send for FILE_INFO_BY_NAME_CLASS
impl Sync for FILE_INFO_BY_NAME_CLASS
impl Unpin for FILE_INFO_BY_NAME_CLASS
impl UnwindSafe for FILE_INFO_BY_NAME_CLASS
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more