pub enum ErrorQueue {
NotReady = -911,
AlreadyOpen = -8,
FailWrite = -7,
InvalidChecksum = -6,
FailReadTailMessage = -5,
FailOpen = -4,
FailRead = -3,
NotFound = -2,
Other = -1,
}Variants§
NotReady = -911
AlreadyOpen = -8
FailWrite = -7
InvalidChecksum = -6
FailReadTailMessage = -5
FailOpen = -4
FailRead = -3
NotFound = -2
Other = -1
Implementations§
Trait Implementations§
Source§impl Debug for ErrorQueue
impl Debug for ErrorQueue
Source§impl PartialEq for ErrorQueue
impl PartialEq for ErrorQueue
Source§fn eq(&self, other: &ErrorQueue) -> bool
fn eq(&self, other: &ErrorQueue) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ErrorQueue
Auto Trait Implementations§
impl Freeze for ErrorQueue
impl RefUnwindSafe for ErrorQueue
impl Send for ErrorQueue
impl Sync for ErrorQueue
impl Unpin for ErrorQueue
impl UnsafeUnpin for ErrorQueue
impl UnwindSafe for ErrorQueue
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