pub enum SendSinglePacketFailure {
Rejected(SendSinglePacketRejection),
WriteFailed(SendSinglePacketWriteError),
Culled,
Timeout,
}Variants§
Trait Implementations§
Source§impl Clone for SendSinglePacketFailure
impl Clone for SendSinglePacketFailure
Source§fn clone(&self) -> SendSinglePacketFailure
fn clone(&self) -> SendSinglePacketFailure
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 moreimpl Copy for SendSinglePacketFailure
Source§impl Debug for SendSinglePacketFailure
impl Debug for SendSinglePacketFailure
impl Eq for SendSinglePacketFailure
Source§impl From<&SendSinglePacketFailure> for RuntimeOperationOutcome
impl From<&SendSinglePacketFailure> for RuntimeOperationOutcome
Source§fn from(failure: &SendSinglePacketFailure) -> Self
fn from(failure: &SendSinglePacketFailure) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SendSinglePacketFailure
impl PartialEq for SendSinglePacketFailure
impl StructuralPartialEq for SendSinglePacketFailure
Auto Trait Implementations§
impl Freeze for SendSinglePacketFailure
impl RefUnwindSafe for SendSinglePacketFailure
impl Send for SendSinglePacketFailure
impl Sync for SendSinglePacketFailure
impl Unpin for SendSinglePacketFailure
impl UnsafeUnpin for SendSinglePacketFailure
impl UnwindSafe for SendSinglePacketFailure
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