pub struct DiskUsage {
pub total_written_bytes: u64,
pub written_bytes: u64,
pub total_read_bytes: u64,
pub read_bytes: u64,
}
Expand description
Type containing read and written bytes.
It is returned by ProcessExt::disk_usage
.
use sysinfo::{ProcessExt, System, SystemExt};
let s = System::new_all();
for (pid, process) in s.processes() {
let disk_usage = process.disk_usage();
println!("[{}] read bytes : new/total => {}/{} B",
pid,
disk_usage.read_bytes,
disk_usage.total_read_bytes,
);
println!("[{}] written bytes: new/total => {}/{} B",
pid,
disk_usage.written_bytes,
disk_usage.total_written_bytes,
);
}
Fields
total_written_bytes: u64
Total number of written bytes.
written_bytes: u64
Number of written bytes since the last refresh.
total_read_bytes: u64
Total number of read bytes.
read_bytes: u64
Number of read bytes since the last refresh.
Trait Implementations
sourceimpl PartialOrd<DiskUsage> for DiskUsage
impl PartialOrd<DiskUsage> for DiskUsage
sourcefn partial_cmp(&self, other: &DiskUsage) -> Option<Ordering>
fn partial_cmp(&self, other: &DiskUsage) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Copy for DiskUsage
impl Eq for DiskUsage
impl StructuralEq for DiskUsage
impl StructuralPartialEq for DiskUsage
Auto Trait Implementations
impl RefUnwindSafe for DiskUsage
impl Send for DiskUsage
impl Sync for DiskUsage
impl Unpin for DiskUsage
impl UnwindSafe for DiskUsage
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more