pub enum StopBootOnFault {
Never,
AnyFault,
UnsupportedValue,
}Variants§
Never
The system performs any normal recovery actions during boot if a fault occurs.
This value shall indicate the system will continue to attempt to boot if a fault occurs.
AnyFault
The system should stop the boot on any fault.
This value shall indicate the system will stop the boot if a fault occurs. This includes, but is not limited to, faults that affect performance, fault tolerance, or capacity.
UnsupportedValue
Fallback value for values that are not supported by current version of Redfish schema.
Trait Implementations§
Source§impl Clone for StopBootOnFault
impl Clone for StopBootOnFault
Source§fn clone(&self) -> StopBootOnFault
fn clone(&self) -> StopBootOnFault
Returns a duplicate 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 StopBootOnFault
impl Debug for StopBootOnFault
Source§impl<'de> Deserialize<'de> for StopBootOnFault
impl<'de> Deserialize<'de> for StopBootOnFault
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 StopBootOnFault
impl PartialEq for StopBootOnFault
Source§impl Serialize for StopBootOnFault
impl Serialize for StopBootOnFault
Source§impl ToSnakeCase for StopBootOnFault
impl ToSnakeCase for StopBootOnFault
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 StopBootOnFault
impl Eq for StopBootOnFault
impl StructuralPartialEq for StopBootOnFault
Auto Trait Implementations§
impl Freeze for StopBootOnFault
impl RefUnwindSafe for StopBootOnFault
impl Send for StopBootOnFault
impl Sync for StopBootOnFault
impl Unpin for StopBootOnFault
impl UnsafeUnpin for StopBootOnFault
impl UnwindSafe for StopBootOnFault
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