pub struct MemoryErrorGranularityData {
pub raw: u8,
pub value: MemoryErrorGranularity,
}
Expand description
§Memory Error - Error Granularity 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: MemoryErrorGranularity
The contained MemoryErrorGranularity value
Trait Implementations§
Source§impl Debug for MemoryErrorGranularityData
impl Debug for MemoryErrorGranularityData
Source§impl Deref for MemoryErrorGranularityData
impl Deref for MemoryErrorGranularityData
Source§impl From<u8> for MemoryErrorGranularityData
impl From<u8> for MemoryErrorGranularityData
Auto Trait Implementations§
impl Freeze for MemoryErrorGranularityData
impl RefUnwindSafe for MemoryErrorGranularityData
impl Send for MemoryErrorGranularityData
impl Sync for MemoryErrorGranularityData
impl Unpin for MemoryErrorGranularityData
impl UnwindSafe for MemoryErrorGranularityData
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