[][src]Struct sysinfo::DiskUsage

pub struct DiskUsage {
    pub total_written_bytes: u64,
    pub written_bytes: u64,
    pub total_read_bytes: u64,
    pub read_bytes: u64,
}

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.get_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

impl Clone for DiskUsage[src]

impl Copy for DiskUsage[src]

impl Debug for DiskUsage[src]

impl Default for DiskUsage[src]

impl PartialEq<DiskUsage> for DiskUsage[src]

impl PartialOrd<DiskUsage> for DiskUsage[src]

impl StructuralPartialEq for DiskUsage[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.