pub enum ErrorDetectingMethod {
Other,
Unknown,
NoErrorDetection,
Parity8Bit,
Ecc32Bit,
Ecc64Bit,
Ecc128Bit,
Crc,
None,
}
Expand description
§Memory Controller Error Detecting Method
Variants§
Other
Other
Unknown
Unknown
NoErrorDetection
No Error Detection
Parity8Bit
8-bit Parity
Ecc32Bit
32-bit ECC
Ecc64Bit
64-bit ECC
Ecc128Bit
128-bit ECC
Crc
CRC
None
A value unknown to this standard, check the raw value
Trait Implementations§
Source§impl Debug for ErrorDetectingMethod
impl Debug for ErrorDetectingMethod
Source§impl PartialEq for ErrorDetectingMethod
impl PartialEq for ErrorDetectingMethod
Source§impl Serialize for ErrorDetectingMethod
impl Serialize for ErrorDetectingMethod
impl Eq for ErrorDetectingMethod
impl StructuralPartialEq for ErrorDetectingMethod
Auto Trait Implementations§
impl Freeze for ErrorDetectingMethod
impl RefUnwindSafe for ErrorDetectingMethod
impl Send for ErrorDetectingMethod
impl Sync for ErrorDetectingMethod
impl Unpin for ErrorDetectingMethod
impl UnwindSafe for ErrorDetectingMethod
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