pub struct FecCounters {
pub total_packets: u64,
pub recovered_packets: u64,
pub lost_packets: u64,
pub bad_packets: u64,
}Fields§
§total_packets: u64§recovered_packets: u64§lost_packets: u64§bad_packets: u64Trait Implementations§
Source§impl Clone for FecCounters
impl Clone for FecCounters
Source§fn clone(&self) -> FecCounters
fn clone(&self) -> FecCounters
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 moreimpl Copy for FecCounters
Source§impl Debug for FecCounters
impl Debug for FecCounters
Source§impl Default for FecCounters
impl Default for FecCounters
Source§fn default() -> FecCounters
fn default() -> FecCounters
Returns the “default value” for a type. Read more
impl Eq for FecCounters
Source§impl PartialEq for FecCounters
impl PartialEq for FecCounters
Source§fn eq(&self, other: &FecCounters) -> bool
fn eq(&self, other: &FecCounters) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FecCounters
Auto Trait Implementations§
impl Freeze for FecCounters
impl RefUnwindSafe for FecCounters
impl Send for FecCounters
impl Sync for FecCounters
impl Unpin for FecCounters
impl UnsafeUnpin for FecCounters
impl UnwindSafe for FecCounters
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