#[repr(C)]pub struct _FAT_STATISTICS {
pub CreateHits: DWORD,
pub SuccessfulCreates: DWORD,
pub FailedCreates: DWORD,
pub NonCachedReads: DWORD,
pub NonCachedReadBytes: DWORD,
pub NonCachedWrites: DWORD,
pub NonCachedWriteBytes: DWORD,
pub NonCachedDiskReads: DWORD,
pub NonCachedDiskWrites: DWORD,
}
Fields§
§CreateHits: DWORD
§SuccessfulCreates: DWORD
§FailedCreates: DWORD
§NonCachedReads: DWORD
§NonCachedReadBytes: DWORD
§NonCachedWrites: DWORD
§NonCachedWriteBytes: DWORD
§NonCachedDiskReads: DWORD
§NonCachedDiskWrites: DWORD
Trait Implementations§
Source§impl Clone for _FAT_STATISTICS
impl Clone for _FAT_STATISTICS
Source§fn clone(&self) -> _FAT_STATISTICS
fn clone(&self) -> _FAT_STATISTICS
Returns a copy of the value. Read more
1.0.0 · 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 _FAT_STATISTICS
impl Debug for _FAT_STATISTICS
Source§impl Ord for _FAT_STATISTICS
impl Ord for _FAT_STATISTICS
Source§fn cmp(&self, other: &_FAT_STATISTICS) -> Ordering
fn cmp(&self, other: &_FAT_STATISTICS) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for _FAT_STATISTICS
impl PartialEq for _FAT_STATISTICS
Source§impl PartialOrd for _FAT_STATISTICS
impl PartialOrd for _FAT_STATISTICS
impl Copy for _FAT_STATISTICS
impl Eq for _FAT_STATISTICS
impl StructuralPartialEq for _FAT_STATISTICS
Auto Trait Implementations§
impl Freeze for _FAT_STATISTICS
impl RefUnwindSafe for _FAT_STATISTICS
impl Send for _FAT_STATISTICS
impl Sync for _FAT_STATISTICS
impl Unpin for _FAT_STATISTICS
impl UnwindSafe for _FAT_STATISTICS
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