pub enum ResolutionType {
ContactVendor,
ReplaceComponent,
FirmwareUpdate,
Reset,
PowerCycle,
ResetToDefaults,
CollectDiagnosticData,
Oem,
UnsupportedValue,
}Variants§
ContactVendor
Contact vendor for service.
ReplaceComponent
Replace a component.
FirmwareUpdate
Perform a firmware update operation.
Reset
Perform a reset operation.
PowerCycle
Perform a power cycle operation.
ResetToDefaults
Reset the settings to factory defaults.
CollectDiagnosticData
Collect diagnostic data.
Oem
Perform an OEM-defined resolution step.
UnsupportedValue
Fallback value for values that are not supported by current version of Redfish schema.
Trait Implementations§
Source§impl Clone for ResolutionType
impl Clone for ResolutionType
Source§fn clone(&self) -> ResolutionType
fn clone(&self) -> ResolutionType
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 ResolutionType
impl Debug for ResolutionType
Source§impl<'de> Deserialize<'de> for ResolutionType
impl<'de> Deserialize<'de> for ResolutionType
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 ResolutionType
impl PartialEq for ResolutionType
Source§impl Serialize for ResolutionType
impl Serialize for ResolutionType
Source§impl ToSnakeCase for ResolutionType
impl ToSnakeCase for ResolutionType
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 ResolutionType
impl Eq for ResolutionType
impl StructuralPartialEq for ResolutionType
Auto Trait Implementations§
impl Freeze for ResolutionType
impl RefUnwindSafe for ResolutionType
impl Send for ResolutionType
impl Sync for ResolutionType
impl Unpin for ResolutionType
impl UnsafeUnpin for ResolutionType
impl UnwindSafe for ResolutionType
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