pub struct DoctorReport {
pub target: String,
pub samples: usize,
pub median_rtt_seconds: f64,
pub jitter_seconds: f64,
pub packet_loss_ratio: f64,
pub recommended_samples: u64,
}Fields§
§target: String§samples: usize§median_rtt_seconds: f64§jitter_seconds: f64§packet_loss_ratio: f64§recommended_samples: u64Implementations§
Auto Trait Implementations§
impl Freeze for DoctorReport
impl RefUnwindSafe for DoctorReport
impl Send for DoctorReport
impl Sync for DoctorReport
impl Unpin for DoctorReport
impl UnsafeUnpin for DoctorReport
impl UnwindSafe for DoctorReport
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