[][src]Struct isilon::models::SummaryWorkloadWorkloadItem

pub struct SummaryWorkloadWorkloadItem {
    pub cpu: f32,
    pub job_type: Option<String>,
    pub l2: f32,
    pub l3: f32,
    pub node: f32,
    pub reads: f32,
    pub system_name: Option<String>,
    pub writes: f32,
}

Fields

cpu: f32

The number (across all cores) of micro-seconds per second.

job_type: Option<String>

The canonical name for the job followed by phase in brackets, ie. 'AVscan[1]', etc...

l2: f32

L2 cache hits per second.

l3: f32

L3 cache hits per second.

node: f32

The node on which the operation was performed.

reads: f32

Disk read operations per second.

system_name: Option<String>

The process name, job ID, etc...

writes: f32

Disk write operations per second.

Trait Implementations

impl Debug for SummaryWorkloadWorkloadItem[src]

impl Serialize for SummaryWorkloadWorkloadItem[src]

impl<'de> Deserialize<'de> for SummaryWorkloadWorkloadItem[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T