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