Struct kstat::KstatData[][src]

pub struct KstatData {
    pub class: String,
    pub module: String,
    pub instance: i32,
    pub name: String,
    pub snaptime: i64,
    pub crtime: i64,
    pub data: HashMap<String, KstatNamedData>,
}

The corresponding data read in from a kstat

Fields

string denoting class of kstat

string denoting module of kstat

int denoting instance of kstat

string denoting name of kstat

nanoseconds since boot of this snapshot

creation time of this kstat in nanoseconds since boot

A hashmap of the named-value pairs for the kstat

Trait Implementations

impl Debug for KstatData
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for KstatData

impl Sync for KstatData