pub enum MemoryArrayErrorCorrection {
Other,
Unknown,
NoCorrection,
Parity,
SingleBitEcc,
MultiBitEcc,
Crc,
None,
}
Expand description
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
sourceimpl Debug for MemoryArrayErrorCorrection
impl Debug for MemoryArrayErrorCorrection
impl Eq for MemoryArrayErrorCorrection
impl StructuralEq for MemoryArrayErrorCorrection
impl StructuralPartialEq for MemoryArrayErrorCorrection
Auto Trait Implementations
impl RefUnwindSafe for MemoryArrayErrorCorrection
impl Send for MemoryArrayErrorCorrection
impl Sync for MemoryArrayErrorCorrection
impl Unpin for MemoryArrayErrorCorrection
impl UnwindSafe for MemoryArrayErrorCorrection
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more