Struct netstack3_device::queue::ReceiveQueueFullError
source · pub struct ReceiveQueueFullError<T>(pub T);
Expand description
Error returned when the receive queue is full.
Tuple Fields§
§0: T
Trait Implementations§
source§impl<T: Debug> Debug for ReceiveQueueFullError<T>
impl<T: Debug> Debug for ReceiveQueueFullError<T>
source§impl<T: PartialEq> PartialEq for ReceiveQueueFullError<T>
impl<T: PartialEq> PartialEq for ReceiveQueueFullError<T>
source§fn eq(&self, other: &ReceiveQueueFullError<T>) -> bool
fn eq(&self, other: &ReceiveQueueFullError<T>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<T: Eq> Eq for ReceiveQueueFullError<T>
impl<T> StructuralPartialEq for ReceiveQueueFullError<T>
Auto Trait Implementations§
impl<T> Freeze for ReceiveQueueFullError<T>where
T: Freeze,
impl<T> RefUnwindSafe for ReceiveQueueFullError<T>where
T: RefUnwindSafe,
impl<T> Send for ReceiveQueueFullError<T>where
T: Send,
impl<T> Sync for ReceiveQueueFullError<T>where
T: Sync,
impl<T> Unpin for ReceiveQueueFullError<T>where
T: Unpin,
impl<T> UnwindSafe for ReceiveQueueFullError<T>where
T: UnwindSafe,
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
source§impl<CC, BC, Meta> RecvFrameContext<Meta, BC> for CCwhere
Meta: ReceivableFrameMeta<CC, BC>,
impl<CC, BC, Meta> RecvFrameContext<Meta, BC> for CCwhere
Meta: ReceivableFrameMeta<CC, BC>,
source§impl<CC, BC, Meta> SendFrameContext<BC, Meta> for CCwhere
Meta: SendableFrameMeta<CC, BC>,
impl<CC, BC, Meta> SendFrameContext<BC, Meta> for CCwhere
Meta: SendableFrameMeta<CC, BC>,
source§fn send_frame<S>(
&mut self,
bindings_ctx: &mut BC,
metadata: Meta,
frame: S,
) -> Result<(), ErrorAndSerializer<SendFrameErrorReason, S>>where
S: Serializer,
<S as Serializer>::Buffer: BufferMut,
fn send_frame<S>(
&mut self,
bindings_ctx: &mut BC,
metadata: Meta,
frame: S,
) -> Result<(), ErrorAndSerializer<SendFrameErrorReason, S>>where
S: Serializer,
<S as Serializer>::Buffer: BufferMut,
Send a frame. Read more
source§impl<Id, CC, BC> TimerHandler<BC, Id> for CCwhere
BC: TimerBindingsTypes,
Id: HandleableTimer<CC, BC>,
impl<Id, CC, BC> TimerHandler<BC, Id> for CCwhere
BC: TimerBindingsTypes,
Id: HandleableTimer<CC, BC>,
source§fn handle_timer(
&mut self,
bindings_ctx: &mut BC,
dispatch: Id,
timer: <BC as TimerBindingsTypes>::UniqueTimerId,
)
fn handle_timer( &mut self, bindings_ctx: &mut BC, dispatch: Id, timer: <BC as TimerBindingsTypes>::UniqueTimerId, )
Handle a timer firing. Read more