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
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 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