Struct s2n_quic_core::event::api::PacketLost
source · #[non_exhaustive]pub struct PacketLost<'a> {
pub packet_header: PacketHeader,
pub path: Path<'a>,
pub bytes_lost: u16,
pub is_mtu_probe: bool,
}Expand description
Packet was lost
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.packet_header: PacketHeader§path: Path<'a>§bytes_lost: u16§is_mtu_probe: boolTrait Implementations§
source§impl<'a> Clone for PacketLost<'a>
impl<'a> Clone for PacketLost<'a>
source§fn clone(&self) -> PacketLost<'a>
fn clone(&self) -> PacketLost<'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 PacketLost<'a>
impl<'a> Debug for PacketLost<'a>
source§impl<'a> IntoEvent<PacketLost<'a>> for PacketLost<'a>
impl<'a> IntoEvent<PacketLost<'a>> for PacketLost<'a>
fn into_event(self) -> PacketLost<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for PacketLost<'a>
impl<'a> Send for PacketLost<'a>
impl<'a> Sync for PacketLost<'a>
impl<'a> Unpin for PacketLost<'a>
impl<'a> UnwindSafe for PacketLost<'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