pub enum SendFailureReason {
RetryLimitReached,
}Expand description
Reason a reliable send failed.
Variants§
RetryLimitReached
At least one packet for the message reached the configured retransmission attempt limit.
Trait Implementations§
Source§impl Clone for SendFailureReason
impl Clone for SendFailureReason
Source§fn clone(&self) -> SendFailureReason
fn clone(&self) -> SendFailureReason
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SendFailureReason
impl Debug for SendFailureReason
Source§impl PartialEq for SendFailureReason
impl PartialEq for SendFailureReason
Source§fn eq(&self, other: &SendFailureReason) -> bool
fn eq(&self, other: &SendFailureReason) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SendFailureReason
impl Eq for SendFailureReason
impl StructuralPartialEq for SendFailureReason
Auto Trait Implementations§
impl Freeze for SendFailureReason
impl RefUnwindSafe for SendFailureReason
impl Send for SendFailureReason
impl Sync for SendFailureReason
impl Unpin for SendFailureReason
impl UnsafeUnpin for SendFailureReason
impl UnwindSafe for SendFailureReason
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