pub enum MemoryErrorOperation {
Other,
Unknown,
Read,
Write,
PartialWrite,
None,
}
Expand description
§Memory Error - Error Operation
Variants§
Other
Other
Unknown
Unknown
Read
Read
Write
Write
PartialWrite
Partial write
None
A value unknown to this standard, check the raw value
Trait Implementations§
Source§impl Debug for MemoryErrorOperation
impl Debug for MemoryErrorOperation
Source§impl PartialEq for MemoryErrorOperation
impl PartialEq for MemoryErrorOperation
Source§impl Serialize for MemoryErrorOperation
impl Serialize for MemoryErrorOperation
impl Eq for MemoryErrorOperation
impl StructuralPartialEq for MemoryErrorOperation
Auto Trait Implementations§
impl Freeze for MemoryErrorOperation
impl RefUnwindSafe for MemoryErrorOperation
impl Send for MemoryErrorOperation
impl Sync for MemoryErrorOperation
impl Unpin for MemoryErrorOperation
impl UnwindSafe for MemoryErrorOperation
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