pub struct SystemIoSampleV2 {
pub version: u16,
pub minor_faults: SourcedEvidenceV2<u64>,
pub major_faults: SourcedEvidenceV2<u64>,
pub read_bytes: SourcedEvidenceV2<u64>,
pub write_bytes: SourcedEvidenceV2<u64>,
pub read_syscalls: SourcedEvidenceV2<u64>,
pub write_syscalls: SourcedEvidenceV2<u64>,
pub cancelled_write_bytes: SourcedEvidenceV2<u64>,
}Expand description
One absolute faults-and-IO reading from procfs.
Fields§
§version: u16§minor_faults: SourcedEvidenceV2<u64>§major_faults: SourcedEvidenceV2<u64>§read_bytes: SourcedEvidenceV2<u64>§write_bytes: SourcedEvidenceV2<u64>§read_syscalls: SourcedEvidenceV2<u64>§write_syscalls: SourcedEvidenceV2<u64>§cancelled_write_bytes: SourcedEvidenceV2<u64>Trait Implementations§
Source§impl Clone for SystemIoSampleV2
impl Clone for SystemIoSampleV2
Source§fn clone(&self) -> SystemIoSampleV2
fn clone(&self) -> SystemIoSampleV2
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SystemIoSampleV2
impl Debug for SystemIoSampleV2
Source§impl<'de> Deserialize<'de> for SystemIoSampleV2
impl<'de> Deserialize<'de> for SystemIoSampleV2
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for SystemIoSampleV2
Source§impl PartialEq for SystemIoSampleV2
impl PartialEq for SystemIoSampleV2
Source§impl Serialize for SystemIoSampleV2
impl Serialize for SystemIoSampleV2
impl StructuralPartialEq for SystemIoSampleV2
Auto Trait Implementations§
impl Freeze for SystemIoSampleV2
impl RefUnwindSafe for SystemIoSampleV2
impl Send for SystemIoSampleV2
impl Sync for SystemIoSampleV2
impl Unpin for SystemIoSampleV2
impl UnsafeUnpin for SystemIoSampleV2
impl UnwindSafe for SystemIoSampleV2
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