pub struct LoadedLatencyReport {
pub idle_p50: Duration,
pub download_p50: Duration,
pub download_increase: Duration,
pub upload_p50: Duration,
pub upload_increase: Duration,
}Expand description
RTT while throughput traffic is active.
Fields§
§idle_p50: DurationIdle median RTT used as the baseline.
download_p50: DurationMedian RTT during download.
download_increase: DurationSaturated download minus idle baseline.
upload_p50: DurationMedian RTT during upload.
upload_increase: DurationSaturated upload minus idle baseline.
Trait Implementations§
Source§impl Clone for LoadedLatencyReport
impl Clone for LoadedLatencyReport
Source§fn clone(&self) -> LoadedLatencyReport
fn clone(&self) -> LoadedLatencyReport
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 LoadedLatencyReport
impl Debug for LoadedLatencyReport
Source§impl<'de> Deserialize<'de> for LoadedLatencyReport
impl<'de> Deserialize<'de> for LoadedLatencyReport
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
impl Eq for LoadedLatencyReport
Source§impl PartialEq for LoadedLatencyReport
impl PartialEq for LoadedLatencyReport
Source§impl Serialize for LoadedLatencyReport
impl Serialize for LoadedLatencyReport
impl StructuralPartialEq for LoadedLatencyReport
Auto Trait Implementations§
impl Freeze for LoadedLatencyReport
impl RefUnwindSafe for LoadedLatencyReport
impl Send for LoadedLatencyReport
impl Sync for LoadedLatencyReport
impl Unpin for LoadedLatencyReport
impl UnsafeUnpin for LoadedLatencyReport
impl UnwindSafe for LoadedLatencyReport
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