Struct DISK_HISTOGRAM
#[repr(C)]pub struct DISK_HISTOGRAM {
pub DiskSize: i64,
pub Start: i64,
pub End: i64,
pub Average: i64,
pub AverageRead: i64,
pub AverageWrite: i64,
pub Granularity: u32,
pub Size: u32,
pub ReadCount: u32,
pub WriteCount: u32,
pub Histogram: *mut HISTOGRAM_BUCKET,
}
Fields§
§DiskSize: i64
§Start: i64
§End: i64
§Average: i64
§AverageRead: i64
§AverageWrite: i64
§Granularity: u32
§Size: u32
§ReadCount: u32
§WriteCount: u32
§Histogram: *mut HISTOGRAM_BUCKET
Trait Implementations§
§impl Clone for DISK_HISTOGRAM
impl Clone for DISK_HISTOGRAM
§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