pub enum SendError<F> {
PayloadTooLarge,
NodeStopped,
Busy,
Failed(F),
}Expand description
Why an awaited send never reached Delivered.
Variants§
PayloadTooLarge
The payload was larger than a single packet’s MDU — rejected before the wire.
NodeStopped
The node has stopped: the command channel is closed (host) or the bounded lane is gone.
Busy
More awaited sends are in flight than the platform tracks at once — the embedded
CompletionPool is full. The unbounded host path never returns it.
Failed(F)
The engine settled the send as a typed failure (SendSinglePacketFailure, …).
Trait Implementations§
impl<F: Copy> Copy for SendError<F>
impl<F: Eq> Eq for SendError<F>
impl<F: PartialEq> StructuralPartialEq for SendError<F>
Auto Trait Implementations§
impl<F> Freeze for SendError<F>where
F: Freeze,
impl<F> RefUnwindSafe for SendError<F>where
F: RefUnwindSafe,
impl<F> Send for SendError<F>where
F: Send,
impl<F> Sync for SendError<F>where
F: Sync,
impl<F> Unpin for SendError<F>where
F: Unpin,
impl<F> UnsafeUnpin for SendError<F>where
F: UnsafeUnpin,
impl<F> UnwindSafe for SendError<F>where
F: 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