#[repr(C)]pub struct FILE_STAT_BASIC_INFORMATION {Show 15 fields
pub FileId: i64,
pub CreationTime: i64,
pub LastAccessTime: i64,
pub LastWriteTime: i64,
pub ChangeTime: i64,
pub AllocationSize: i64,
pub EndOfFile: i64,
pub FileAttributes: u32,
pub ReparseTag: u32,
pub NumberOfLinks: u32,
pub DeviceType: u32,
pub DeviceCharacteristics: u32,
pub Reserved: u32,
pub VolumeSerialNumber: i64,
pub FileId128: [u64; 2],
}
Fields§
§FileId: i64
§CreationTime: i64
§LastAccessTime: i64
§LastWriteTime: i64
§ChangeTime: i64
§AllocationSize: i64
§EndOfFile: i64
§FileAttributes: u32
§ReparseTag: u32
§NumberOfLinks: u32
§DeviceType: u32
§DeviceCharacteristics: u32
§Reserved: u32
§VolumeSerialNumber: i64
§FileId128: [u64; 2]
Auto Trait Implementations§
impl Freeze for FILE_STAT_BASIC_INFORMATION
impl RefUnwindSafe for FILE_STAT_BASIC_INFORMATION
impl Send for FILE_STAT_BASIC_INFORMATION
impl Sync for FILE_STAT_BASIC_INFORMATION
impl Unpin for FILE_STAT_BASIC_INFORMATION
impl UnwindSafe for FILE_STAT_BASIC_INFORMATION
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