pub enum MemoryErrorType {
Show 15 variants
Other,
Unknown,
OK,
BadRead,
ParityError,
SingleBitError,
DoubleBitError,
MultiBitError,
NibbleError,
ChecksumError,
CrcError,
CorrectedSingleBitError,
CorrectedError,
UncorrectableError,
None,
}
Expand description
§Memory Error - Error Type
Variants§
Other
Other
Unknown
Unknown
OK
OK
BadRead
Bad read
ParityError
Parity error
SingleBitError
Single-bit error
DoubleBitError
Double-bit error
MultiBitError
Multi-bit error
NibbleError
Nibble error
ChecksumError
Checksum error
CrcError
CRC error
CorrectedSingleBitError
Corrected single-bit error
CorrectedError
Corrected error
UncorrectableError
Uncorrectable error
None
A value unknown to this standard, check the raw value
Trait Implementations§
Source§impl Debug for MemoryErrorType
impl Debug for MemoryErrorType
Source§impl PartialEq for MemoryErrorType
impl PartialEq for MemoryErrorType
Source§impl Serialize for MemoryErrorType
impl Serialize for MemoryErrorType
impl Eq for MemoryErrorType
impl StructuralPartialEq for MemoryErrorType
Auto Trait Implementations§
impl Freeze for MemoryErrorType
impl RefUnwindSafe for MemoryErrorType
impl Send for MemoryErrorType
impl Sync for MemoryErrorType
impl Unpin for MemoryErrorType
impl UnwindSafe for MemoryErrorType
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