pub enum MemoryArrayErrorCorrection {
Other,
Unknown,
NoCorrection,
Parity,
SingleBitEcc,
MultiBitEcc,
Crc,
None,
}Expand description
§Memory Array - Error Correction Types
Variants§
Other
Other
Unknown
Unknown
NoCorrection
No Error Correction
Parity
Parity
SingleBitEcc
Single-bit ECC
MultiBitEcc
Multi-bit ECC
Crc
CRC
None
A value unknown to this standard, check the raw value
Trait Implementations§
Source§impl Debug for MemoryArrayErrorCorrection
impl Debug for MemoryArrayErrorCorrection
impl Eq for MemoryArrayErrorCorrection
Source§impl PartialEq for MemoryArrayErrorCorrection
impl PartialEq for MemoryArrayErrorCorrection
Source§fn eq(&self, other: &MemoryArrayErrorCorrection) -> bool
fn eq(&self, other: &MemoryArrayErrorCorrection) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MemoryArrayErrorCorrection
Auto Trait Implementations§
impl Freeze for MemoryArrayErrorCorrection
impl RefUnwindSafe for MemoryArrayErrorCorrection
impl Send for MemoryArrayErrorCorrection
impl Sync for MemoryArrayErrorCorrection
impl Unpin for MemoryArrayErrorCorrection
impl UnsafeUnpin for MemoryArrayErrorCorrection
impl UnwindSafe for MemoryArrayErrorCorrection
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