pub struct LossStats {
pub lost_packets: u64,
pub unknown_loss_packets: u64,
pub upstream_loss_packets: Option<i128>,
pub downstream_loss_packets: Option<i128>,
pub packet_loss_percent: f64,
pub upstream_loss_percent: f64,
pub downstream_loss_percent: f64,
pub duplicate_percent: f64,
pub late_packets_percent: f64,
}Fields§
§lost_packets: u64§unknown_loss_packets: u64§upstream_loss_packets: Option<i128>§downstream_loss_packets: Option<i128>§packet_loss_percent: f64§upstream_loss_percent: f64§downstream_loss_percent: f64§duplicate_percent: f64§late_packets_percent: f64Trait Implementations§
impl Copy for LossStats
impl StructuralPartialEq for LossStats
Auto Trait Implementations§
impl Freeze for LossStats
impl RefUnwindSafe for LossStats
impl Send for LossStats
impl Sync for LossStats
impl Unpin for LossStats
impl UnsafeUnpin for LossStats
impl UnwindSafe for LossStats
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