pub struct SendFailedEvent {
pub packet_type: PacketType,
pub message_id: MessageId,
pub reason: SendFailureReason,
}Expand description
A reliable send failure produced by the engine.
Fields§
§packet_type: PacketTypePacket type whose message failed.
message_id: MessageIdMessage identifier that failed.
reason: SendFailureReasonFailure reason.
Trait Implementations§
Source§impl Clone for SendFailedEvent
impl Clone for SendFailedEvent
Source§fn clone(&self) -> SendFailedEvent
fn clone(&self) -> SendFailedEvent
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 SendFailedEvent
Source§impl Debug for SendFailedEvent
impl Debug for SendFailedEvent
impl Eq for SendFailedEvent
Source§impl PartialEq for SendFailedEvent
impl PartialEq for SendFailedEvent
Source§fn eq(&self, other: &SendFailedEvent) -> bool
fn eq(&self, other: &SendFailedEvent) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SendFailedEvent
Auto Trait Implementations§
impl Freeze for SendFailedEvent
impl RefUnwindSafe for SendFailedEvent
impl Send for SendFailedEvent
impl Sync for SendFailedEvent
impl Unpin for SendFailedEvent
impl UnsafeUnpin for SendFailedEvent
impl UnwindSafe for SendFailedEvent
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