pub struct DiversitySourceStats {
pub observed: u64,
pub accepted: u64,
pub duplicates: u64,
pub passthrough: u64,
}Expand description
Cumulative packet-selection counters for one receive radio.
Fields§
§observed: u64Valid frames examined from this source.
accepted: u64First WFB copies contributed by this source.
duplicates: u64Copies discarded because another source arrived first.
passthrough: u64Frames that could not be classified as a WFB packet.
Trait Implementations§
Source§impl Clone for DiversitySourceStats
impl Clone for DiversitySourceStats
Source§fn clone(&self) -> DiversitySourceStats
fn clone(&self) -> DiversitySourceStats
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 DiversitySourceStats
Source§impl Debug for DiversitySourceStats
impl Debug for DiversitySourceStats
Source§impl Default for DiversitySourceStats
impl Default for DiversitySourceStats
Source§fn default() -> DiversitySourceStats
fn default() -> DiversitySourceStats
Returns the “default value” for a type. Read more
impl Eq for DiversitySourceStats
Source§impl PartialEq for DiversitySourceStats
impl PartialEq for DiversitySourceStats
Source§fn eq(&self, other: &DiversitySourceStats) -> bool
fn eq(&self, other: &DiversitySourceStats) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DiversitySourceStats
Auto Trait Implementations§
impl Freeze for DiversitySourceStats
impl RefUnwindSafe for DiversitySourceStats
impl Send for DiversitySourceStats
impl Sync for DiversitySourceStats
impl Unpin for DiversitySourceStats
impl UnsafeUnpin for DiversitySourceStats
impl UnwindSafe for DiversitySourceStats
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