pub enum ErrorCorrectionType {
Other = 1,
Unknown = 2,
NoCorrection = 3,
Parity = 4,
SingleBitEcc = 5,
MultiBitEcc = 6,
None = 7,
}
Expand description
§System Cache Error Correction Type
Variants§
Other = 1
Other
Unknown = 2
Unknown
NoCorrection = 3
None (No Correction)
Parity = 4
Parity
SingleBitEcc = 5
Single-bit ECC
MultiBitEcc = 6
Multi-bit ECC
None = 7
A value unknown to this standard, check the raw value
Trait Implementations§
Source§impl Debug for ErrorCorrectionType
impl Debug for ErrorCorrectionType
Source§impl PartialEq for ErrorCorrectionType
impl PartialEq for ErrorCorrectionType
Source§impl Serialize for ErrorCorrectionType
impl Serialize for ErrorCorrectionType
impl Eq for ErrorCorrectionType
impl StructuralPartialEq for ErrorCorrectionType
Auto Trait Implementations§
impl Freeze for ErrorCorrectionType
impl RefUnwindSafe for ErrorCorrectionType
impl Send for ErrorCorrectionType
impl Sync for ErrorCorrectionType
impl Unpin for ErrorCorrectionType
impl UnwindSafe for ErrorCorrectionType
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