pub struct Dtls13Flight {
pub records: Vec<(u16, u64)>,
pub started_at_ms: u64,
}Expand description
Represents one outbound DTLS 1.3 flight tracked by packet keys.
Fields§
§records: Vec<(u16, u64)>§started_at_ms: u64Trait Implementations§
Source§impl Clone for Dtls13Flight
impl Clone for Dtls13Flight
Source§fn clone(&self) -> Dtls13Flight
fn clone(&self) -> Dtls13Flight
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 moreSource§impl Debug for Dtls13Flight
impl Debug for Dtls13Flight
Source§impl PartialEq for Dtls13Flight
impl PartialEq for Dtls13Flight
Source§fn eq(&self, other: &Dtls13Flight) -> bool
fn eq(&self, other: &Dtls13Flight) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for Dtls13Flight
impl StructuralPartialEq for Dtls13Flight
Auto Trait Implementations§
impl Freeze for Dtls13Flight
impl RefUnwindSafe for Dtls13Flight
impl Send for Dtls13Flight
impl Sync for Dtls13Flight
impl Unpin for Dtls13Flight
impl UnsafeUnpin for Dtls13Flight
impl UnwindSafe for Dtls13Flight
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