pub enum RedundancyMode {
Failover,
N,
Sharing,
Sparing,
NotRedundant,
}
Variants§
Failover
Failure of one unit automatically causes a standby or offline unit in the redundancy set to take over its functions.
N
Multiple units are available and active such that normal operation will continue if one or more units fail.
Sharing
Multiple units contribute or share such that operation will continue, but at a reduced capacity, if one or more units fail.
Sparing
One or more spare units are available to take over the function of a failed unit, but takeover is not automatic.
NotRedundant
The subsystem is not configured in a redundancy mode, either due to configuration or the functionality has been disabled by the user. Added in version v1_3_0.
Trait Implementations§
Source§impl Clone for RedundancyMode
impl Clone for RedundancyMode
Source§fn clone(&self) -> RedundancyMode
fn clone(&self) -> RedundancyMode
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 RedundancyMode
impl Debug for RedundancyMode
Source§impl Default for RedundancyMode
impl Default for RedundancyMode
Source§fn default() -> RedundancyMode
fn default() -> RedundancyMode
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RedundancyMode
impl<'de> Deserialize<'de> for RedundancyMode
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 RedundancyMode
impl Metadata<'static> for RedundancyMode
Source§const JSON_SCHEMA: &'static str = "Redundancy.v1_4_1.json"
const JSON_SCHEMA: &'static str = "Redundancy.v1_4_1.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 RedundancyMode
impl RefUnwindSafe for RedundancyMode
impl Send for RedundancyMode
impl Sync for RedundancyMode
impl Unpin for RedundancyMode
impl UnwindSafe for RedundancyMode
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