pub enum AutomaticRetryConfig {
Disabled,
RetryAttempts,
RetryAlways,
UnsupportedValue,
}Variants§
Disabled
Disable automatic retrying of booting.
This value shall indicate that automatic retrying of booting is disabled.
RetryAttempts
Automatic retrying of booting is based on a specified retry count.
This value shall indicate that the number of retries of booting is based on the
AutomaticRetryAttempts property, and the RemainingAutomaticRetryAttempts property indicates the
number of remaining attempts.
RetryAlways
Always automatically retry booting.
This value shall indicate that the system will always automatically retry booting.
UnsupportedValue
Fallback value for values that are not supported by current version of Redfish schema.
Trait Implementations§
Source§impl Clone for AutomaticRetryConfig
impl Clone for AutomaticRetryConfig
Source§fn clone(&self) -> AutomaticRetryConfig
fn clone(&self) -> AutomaticRetryConfig
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 AutomaticRetryConfig
impl Debug for AutomaticRetryConfig
Source§impl<'de> Deserialize<'de> for AutomaticRetryConfig
impl<'de> Deserialize<'de> for AutomaticRetryConfig
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 AutomaticRetryConfig
impl PartialEq for AutomaticRetryConfig
Source§impl Serialize for AutomaticRetryConfig
impl Serialize for AutomaticRetryConfig
Source§impl ToSnakeCase for AutomaticRetryConfig
impl ToSnakeCase for AutomaticRetryConfig
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 AutomaticRetryConfig
impl Eq for AutomaticRetryConfig
impl StructuralPartialEq for AutomaticRetryConfig
Auto Trait Implementations§
impl Freeze for AutomaticRetryConfig
impl RefUnwindSafe for AutomaticRetryConfig
impl Send for AutomaticRetryConfig
impl Sync for AutomaticRetryConfig
impl Unpin for AutomaticRetryConfig
impl UnsafeUnpin for AutomaticRetryConfig
impl UnwindSafe for AutomaticRetryConfig
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