pub struct CumulativeSnapshot {
pub events: EventCounts,
pub packets: PacketCounts,
pub loss: LossStats,
pub send_call: DurationStats,
pub timer_error: DurationStats,
pub rtt: RttStats,
pub ipdv: IpdvStats,
pub one_way_delay: OneWayDelayStats,
pub server_processing: ServerProcessingStats,
}Fields§
§events: EventCounts§packets: PacketCounts§loss: LossStats§send_call: DurationStats§timer_error: DurationStats§rtt: RttStats§ipdv: IpdvStats§one_way_delay: OneWayDelayStats§server_processing: ServerProcessingStatsTrait Implementations§
Source§impl Clone for CumulativeSnapshot
impl Clone for CumulativeSnapshot
Source§fn clone(&self) -> CumulativeSnapshot
fn clone(&self) -> CumulativeSnapshot
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 CumulativeSnapshot
impl Debug for CumulativeSnapshot
Source§impl PartialEq for CumulativeSnapshot
impl PartialEq for CumulativeSnapshot
Source§fn eq(&self, other: &CumulativeSnapshot) -> bool
fn eq(&self, other: &CumulativeSnapshot) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CumulativeSnapshot
Auto Trait Implementations§
impl Freeze for CumulativeSnapshot
impl RefUnwindSafe for CumulativeSnapshot
impl Send for CumulativeSnapshot
impl Sync for CumulativeSnapshot
impl Unpin for CumulativeSnapshot
impl UnsafeUnpin for CumulativeSnapshot
impl UnwindSafe for CumulativeSnapshot
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