pub struct ErrorCorrectionTypeData {
pub raw: u8,
pub value: ErrorCorrectionType,
}
Expand description
§System Cache Error Correction Type Data
Fields§
§raw: u8
Raw value
raw is most useful when value is None. This is most likely to occur when the standard was updated but this library code has not been updated to match the current standard.
value: ErrorCorrectionType
The contained ErrorCorrectionType value
Trait Implementations§
Source§impl Debug for ErrorCorrectionTypeData
impl Debug for ErrorCorrectionTypeData
Source§impl Deref for ErrorCorrectionTypeData
impl Deref for ErrorCorrectionTypeData
Source§impl Display for ErrorCorrectionTypeData
impl Display for ErrorCorrectionTypeData
Source§impl From<u8> for ErrorCorrectionTypeData
impl From<u8> for ErrorCorrectionTypeData
Auto Trait Implementations§
impl Freeze for ErrorCorrectionTypeData
impl RefUnwindSafe for ErrorCorrectionTypeData
impl Send for ErrorCorrectionTypeData
impl Sync for ErrorCorrectionTypeData
impl Unpin for ErrorCorrectionTypeData
impl UnwindSafe for ErrorCorrectionTypeData
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