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§
source§impl Debug for MemoryArrayErrorCorrection
impl Debug for MemoryArrayErrorCorrection
source§impl PartialEq<MemoryArrayErrorCorrection> for MemoryArrayErrorCorrection
impl PartialEq<MemoryArrayErrorCorrection> for MemoryArrayErrorCorrection
source§fn eq(&self, other: &MemoryArrayErrorCorrection) -> bool
fn eq(&self, other: &MemoryArrayErrorCorrection) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.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§
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