pub enum MemoryMirroring {
System,
DIMM,
Hybrid,
None,
}
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.
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§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 MemoryMirroring
impl Debug for MemoryMirroring
Source§impl Default for MemoryMirroring
impl Default for MemoryMirroring
Source§fn default() -> MemoryMirroring
fn default() -> MemoryMirroring
Returns the “default value” for a type. Read more
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 Metadata<'static> for MemoryMirroring
impl Metadata<'static> for MemoryMirroring
Source§const JSON_SCHEMA: &'static str = "ComputerSystem.v1_20_1.json"
const JSON_SCHEMA: &'static str = "ComputerSystem.v1_20_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 MemoryMirroring
impl RefUnwindSafe for MemoryMirroring
impl Send for MemoryMirroring
impl Sync for MemoryMirroring
impl Unpin 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