pub enum MsgQueueError {
MqFull,
MqEmpty,
MqCrcErr,
MqMsgTooBig,
}
Variants§
Trait Implementations§
source§impl Debug for MsgQueueError
impl Debug for MsgQueueError
source§impl Display for MsgQueueError
impl Display for MsgQueueError
source§impl Error for MsgQueueError
impl Error for MsgQueueError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl PartialEq for MsgQueueError
impl PartialEq for MsgQueueError
impl StructuralPartialEq for MsgQueueError
Auto Trait Implementations§
impl Freeze for MsgQueueError
impl RefUnwindSafe for MsgQueueError
impl Send for MsgQueueError
impl Sync for MsgQueueError
impl Unpin for MsgQueueError
impl UnwindSafe for MsgQueueError
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