pub enum WatchdogWarningActions {
None,
DiagnosticInterrupt,
Smi,
MessagingInterrupt,
Sci,
Oem,
UnsupportedValue,
}Expand description
The enumerations of WatchdogWarningActions specify the choice of action to take when the host watchdog timer is close (typically 3-10 seconds) to reaching its timeout value.
Variants§
None
No action taken.
DiagnosticInterrupt
Raise a (typically non-maskable) Diagnostic Interrupt.
Smi
Raise a Systems Management Interrupt (SMI).
MessagingInterrupt
Raise a legacy IPMI messaging interrupt.
Sci
Raise an interrupt using the ACPI System Control Interrupt (SCI).
Oem
Perform an OEM-defined action.
UnsupportedValue
Fallback value for values that are not supported by current version of Redfish schema.
Trait Implementations§
Source§impl Clone for WatchdogWarningActions
impl Clone for WatchdogWarningActions
Source§fn clone(&self) -> WatchdogWarningActions
fn clone(&self) -> WatchdogWarningActions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WatchdogWarningActions
impl Debug for WatchdogWarningActions
Source§impl<'de> Deserialize<'de> for WatchdogWarningActions
impl<'de> Deserialize<'de> for WatchdogWarningActions
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 PartialEq for WatchdogWarningActions
impl PartialEq for WatchdogWarningActions
Source§fn eq(&self, other: &WatchdogWarningActions) -> bool
fn eq(&self, other: &WatchdogWarningActions) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for WatchdogWarningActions
impl Serialize for WatchdogWarningActions
Source§impl ToSnakeCase for WatchdogWarningActions
impl ToSnakeCase for WatchdogWarningActions
Source§fn to_snake_case(&self) -> &'static str
fn to_snake_case(&self) -> &'static str
Convert this enum variant to a
snake_case stringimpl Copy for WatchdogWarningActions
impl Eq for WatchdogWarningActions
impl StructuralPartialEq for WatchdogWarningActions
Auto Trait Implementations§
impl Freeze for WatchdogWarningActions
impl RefUnwindSafe for WatchdogWarningActions
impl Send for WatchdogWarningActions
impl Sync for WatchdogWarningActions
impl Unpin for WatchdogWarningActions
impl UnsafeUnpin for WatchdogWarningActions
impl UnwindSafe for WatchdogWarningActions
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