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 Process::disk_usage.
use sysinfo::System;
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: u64Total number of written bytes.
written_bytes: u64Number of written bytes since the last refresh.
total_read_bytes: u64Total number of read bytes.
read_bytes: u64Number of read bytes since the last refresh.
Trait Implementations§
source§impl PartialOrd for DiskUsage
impl PartialOrd for DiskUsage
impl Copy for DiskUsage
impl Eq for DiskUsage
impl StructuralPartialEq for DiskUsage
Auto Trait Implementations§
impl Freeze for DiskUsage
impl RefUnwindSafe for DiskUsage
impl Send for DiskUsage
impl Sync for DiskUsage
impl Unpin for DiskUsage
impl UnwindSafe for DiskUsage
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)§impl<T, U> Into<U> for Twhere
U: From<T>,
impl<T, U> Into<U> for Twhere
U: From<T>,
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>where
F: FnOnce(&Self) -> bool,
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>where
F: FnOnce(&Self) -> bool,
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more