pub struct PacketLost {
pub header: Option<PacketHeader>,
pub frames: Option<Vec<QuicFrame>>,
pub trigger: Option<PacketLostTrigger>,
}
Fields§
§header: Option<PacketHeader>
§frames: Option<Vec<QuicFrame>>
§trigger: Option<PacketLostTrigger>
Trait Implementations§
Source§impl Clone for PacketLost
impl Clone for PacketLost
Source§fn clone(&self) -> PacketLost
fn clone(&self) -> PacketLost
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 Debug for PacketLost
impl Debug for PacketLost
Source§impl<'de> Deserialize<'de> for PacketLost
impl<'de> Deserialize<'de> for PacketLost
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PacketLost
impl PartialEq for PacketLost
Source§impl Serialize for PacketLost
impl Serialize for PacketLost
impl StructuralPartialEq for PacketLost
Auto Trait Implementations§
impl Freeze for PacketLost
impl RefUnwindSafe for PacketLost
impl Send for PacketLost
impl Sync for PacketLost
impl Unpin for PacketLost
impl UnwindSafe for PacketLost
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