pub struct AlarmTrips {
pub address_parity_error: Option<bool>,
pub correctable_ecc_error: Option<bool>,
pub spare_block: Option<bool>,
pub temperature: Option<bool>,
pub uncorrectable_ecc_error: Option<bool>,
}
Expand description
The alarm trip information about the memory. These alarms are reset when the system resets. Note that if they are re-discovered they can be reasserted.
Fields§
§address_parity_error: Option<bool>
An indication of whether an address parity error was detected that a retry could not correct.
correctable_ecc_error: Option<bool>
An indication of whether the correctable error threshold crossing alarm trip was detected.
spare_block: Option<bool>
An indication of whether the spare block capacity crossing alarm trip was detected.
temperature: Option<bool>
An indication of whether a temperature threshold alarm trip was detected.
uncorrectable_ecc_error: Option<bool>
An indication of whether the uncorrectable error threshold alarm trip was detected.
Trait Implementations§
Source§impl Clone for AlarmTrips
impl Clone for AlarmTrips
Source§fn clone(&self) -> AlarmTrips
fn clone(&self) -> AlarmTrips
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AlarmTrips
impl Debug for AlarmTrips
Source§impl Default for AlarmTrips
impl Default for AlarmTrips
Source§impl<'de> Deserialize<'de> for AlarmTrips
impl<'de> Deserialize<'de> for AlarmTrips
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
Source§impl Metadata<'static> for AlarmTrips
impl Metadata<'static> for AlarmTrips
Source§const JSON_SCHEMA: &'static str = "MemoryMetrics.v1_7_0.json"
const JSON_SCHEMA: &'static str = "MemoryMetrics.v1_7_0.json"
Name of the json-schema file that describes the entity that implements this trait. Should
be only the file name, so that it can be resolved relative to the URL of the redfish
service, or the public Redfish schema index.
Auto Trait Implementations§
impl Freeze for AlarmTrips
impl RefUnwindSafe for AlarmTrips
impl Send for AlarmTrips
impl Sync for AlarmTrips
impl Unpin for AlarmTrips
impl UnwindSafe for AlarmTrips
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more