#[repr(C)]pub struct _DISK_HISTOGRAM {
pub DiskSize: LARGE_INTEGER,
pub Start: LARGE_INTEGER,
pub End: LARGE_INTEGER,
pub Average: LARGE_INTEGER,
pub AverageRead: LARGE_INTEGER,
pub AverageWrite: LARGE_INTEGER,
pub Granularity: DWORD,
pub Size: DWORD,
pub ReadCount: DWORD,
pub WriteCount: DWORD,
pub Histogram: PHISTOGRAM_BUCKET,
}
Fields§
§DiskSize: LARGE_INTEGER
§Start: LARGE_INTEGER
§End: LARGE_INTEGER
§Average: LARGE_INTEGER
§AverageRead: LARGE_INTEGER
§AverageWrite: LARGE_INTEGER
§Granularity: DWORD
§Size: DWORD
§ReadCount: DWORD
§WriteCount: DWORD
§Histogram: PHISTOGRAM_BUCKET
Trait Implementations§
Source§impl Clone for _DISK_HISTOGRAM
impl Clone for _DISK_HISTOGRAM
Source§fn clone(&self) -> _DISK_HISTOGRAM
fn clone(&self) -> _DISK_HISTOGRAM
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 moreimpl Copy for _DISK_HISTOGRAM
Auto Trait Implementations§
impl Freeze for _DISK_HISTOGRAM
impl RefUnwindSafe for _DISK_HISTOGRAM
impl !Send for _DISK_HISTOGRAM
impl !Sync for _DISK_HISTOGRAM
impl Unpin for _DISK_HISTOGRAM
impl UnwindSafe for _DISK_HISTOGRAM
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