pub struct Report {
pub arrival: Instant,
pub rtt: Option<Duration>,
pub packet_reports: Vec<PacketReport>,
}Expand description
A batch of packet reports, with the round trip time they imply.
Fields§
§arrival: InstantWhen the feedback that produced this batch was received here.
rtt: Option<Duration>Round trip time derived from the newest packet this feedback acknowledged.
packet_reports: Vec<PacketReport>The packets being reported on, in send order.
Trait Implementations§
impl Eq for Report
impl StructuralPartialEq for Report
Auto Trait Implementations§
impl Freeze for Report
impl RefUnwindSafe for Report
impl Send for Report
impl Sync for Report
impl Unpin for Report
impl UnsafeUnpin for Report
impl UnwindSafe for Report
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