Struct perfcnt::linux::perf_format::ReadFormat
[−]
[src]
pub struct ReadFormat { pub time_enabled: Option<u64>, pub time_running: Option<u64>, pub values: Vec<(u64, Option<u64>)>, }
We use the same read format for READ_FORMAT_GROUP and non-grouped reads for simplicity
Fields
time_enabled: Option<u64>
if PERF_FORMAT_TOTAL_TIME_ENABLED
time_running: Option<u64>
if PERF_FORMAT_TOTAL_TIME_RUNNING
values: Vec<(u64, Option<u64>)>
Collection of (value, Some(id) if PERF_FORMAT_ID)
Trait Implementations
impl Debug for ReadFormat
[src]
impl Default for ReadFormat
[src]
fn default() -> ReadFormat
Returns the "default value" for a type. Read more