Struct redfish_codegen::models::memory_metrics::v1_6_0::CurrentPeriod
source · pub struct CurrentPeriod {
pub blocks_read: Option<i64>,
pub blocks_written: Option<i64>,
pub correctable_ecc_error_count: Option<i64>,
pub indeterminate_correctable_error_count: Option<i64>,
pub indeterminate_uncorrectable_error_count: Option<i64>,
pub uncorrectable_ecc_error_count: Option<i64>,
}
Expand description
The memory metrics since the last system reset or ClearCurrentPeriod action.
Fields§
§blocks_read: Option<i64>
The number of blocks read since reset.
blocks_written: Option<i64>
The number of blocks written since reset.
correctable_ecc_error_count: Option<i64>
The number of the correctable errors since reset.
indeterminate_correctable_error_count: Option<i64>
The number of indeterminate correctable errors since reset.
indeterminate_uncorrectable_error_count: Option<i64>
The number of indeterminate uncorrectable errors since reset.
uncorrectable_ecc_error_count: Option<i64>
The number of the uncorrectable errors since reset.
Trait Implementations§
source§impl Clone for CurrentPeriod
impl Clone for CurrentPeriod
source§fn clone(&self) -> CurrentPeriod
fn clone(&self) -> CurrentPeriod
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CurrentPeriod
impl Debug for CurrentPeriod
source§impl Default for CurrentPeriod
impl Default for CurrentPeriod
source§fn default() -> CurrentPeriod
fn default() -> CurrentPeriod
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for CurrentPeriod
impl<'de> Deserialize<'de> for CurrentPeriod
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more