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
impl Eq for MemoryErrorOperation
Source§impl PartialEq for MemoryErrorOperation
impl PartialEq for MemoryErrorOperation
Source§fn eq(&self, other: &MemoryErrorOperation) -> bool
fn eq(&self, other: &MemoryErrorOperation) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MemoryErrorOperation
impl Serialize 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 UnsafeUnpin 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