pub enum MemoryMirroring {
System,
Dimm,
Hybrid,
None,
UnsupportedValue,
}Variants§
System
The system supports DIMM mirroring at the system level. Individual DIMMs are not paired for mirroring in this mode.
Dimm
The system supports DIMM mirroring at the DIMM level. Individual DIMMs can be mirrored.
Hybrid
The system supports a hybrid mirroring at the system and DIMM levels. Individual DIMMs can be mirrored.
None
The system does not support DIMM mirroring.
UnsupportedValue
Fallback value for values that are not supported by current version of Redfish schema.
Trait Implementations§
Source§impl Clone for MemoryMirroring
impl Clone for MemoryMirroring
Source§fn clone(&self) -> MemoryMirroring
fn clone(&self) -> MemoryMirroring
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 MemoryMirroring
impl Debug for MemoryMirroring
Source§impl<'de> Deserialize<'de> for MemoryMirroring
impl<'de> Deserialize<'de> for MemoryMirroring
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 MemoryMirroring
impl PartialEq for MemoryMirroring
Source§impl Serialize for MemoryMirroring
impl Serialize for MemoryMirroring
Source§impl ToSnakeCase for MemoryMirroring
impl ToSnakeCase for MemoryMirroring
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 MemoryMirroring
impl Eq for MemoryMirroring
impl StructuralPartialEq for MemoryMirroring
Auto Trait Implementations§
impl Freeze for MemoryMirroring
impl RefUnwindSafe for MemoryMirroring
impl Send for MemoryMirroring
impl Sync for MemoryMirroring
impl Unpin for MemoryMirroring
impl UnsafeUnpin for MemoryMirroring
impl UnwindSafe for MemoryMirroring
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