pub struct AddressDiscoveryStats {
pub frames_sent: u64,
pub frames_received: u64,
pub addresses_discovered: u64,
pub address_changes_detected: u64,
}
Expand description
Address discovery statistics
Fields§
§frames_sent: u64
Number of OBSERVED_ADDRESS frames sent
frames_received: u64
Number of OBSERVED_ADDRESS frames received
addresses_discovered: u64
Number of unique addresses discovered
address_changes_detected: u64
Number of address changes detected
Trait Implementations§
Source§impl Clone for AddressDiscoveryStats
impl Clone for AddressDiscoveryStats
Source§fn clone(&self) -> AddressDiscoveryStats
fn clone(&self) -> AddressDiscoveryStats
Returns a duplicate of the value. Read more
1.0.0 · 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 AddressDiscoveryStats
impl Debug for AddressDiscoveryStats
Source§impl Default for AddressDiscoveryStats
impl Default for AddressDiscoveryStats
Source§fn default() -> AddressDiscoveryStats
fn default() -> AddressDiscoveryStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AddressDiscoveryStats
impl RefUnwindSafe for AddressDiscoveryStats
impl Send for AddressDiscoveryStats
impl Sync for AddressDiscoveryStats
impl Unpin for AddressDiscoveryStats
impl UnwindSafe for AddressDiscoveryStats
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