pub enum TxError {
AckTimeout,
DataTooLong,
Trx(TrxError),
}Expand description
Errors returned by Stack::send.
Variants§
AckTimeout
The peer did not ACK within the configured retries.
DataTooLong
data was longer than the radio’s 61-byte MTU.
Trx(TrxError)
The Runner reported an underlying radio error during the send.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TxError
impl RefUnwindSafe for TxError
impl Send for TxError
impl Sync for TxError
impl Unpin for TxError
impl UnsafeUnpin for TxError
impl UnwindSafe for TxError
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