Struct s2n_quic_core::event::api::PacketDropped
source · #[non_exhaustive]pub struct PacketDropped<'a> {
pub reason: PacketDropReason<'a>,
}Expand description
Packet was dropped with the given reason
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.reason: PacketDropReason<'a>Trait Implementations§
source§impl<'a> Clone for PacketDropped<'a>
impl<'a> Clone for PacketDropped<'a>
source§fn clone(&self) -> PacketDropped<'a>
fn clone(&self) -> PacketDropped<'a>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl<'a> Debug for PacketDropped<'a>
impl<'a> Debug for PacketDropped<'a>
source§impl<'a> Event for PacketDropped<'a>
impl<'a> Event for PacketDropped<'a>
source§impl<'a> IntoEvent<PacketDropped<'a>> for PacketDropped<'a>
impl<'a> IntoEvent<PacketDropped<'a>> for PacketDropped<'a>
fn into_event(self) -> PacketDropped<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for PacketDropped<'a>
impl<'a> Send for PacketDropped<'a>
impl<'a> Sync for PacketDropped<'a>
impl<'a> Unpin for PacketDropped<'a>
impl<'a> UnwindSafe for PacketDropped<'a>
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