#[non_exhaustive]pub struct NeighbourTableStats {
pub allocs: u64,
pub destroys: u64,
pub hash_grows: u64,
pub res_failed: u64,
pub lookups: u64,
pub hits: u64,
pub multicast_probes_received: u64,
pub unicast_probes_received: u64,
pub periodic_gc_runs: u64,
pub forced_gc_runs: u64,
pub table_fulls: u64,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.allocs: u64
§destroys: u64
§hash_grows: u64
§res_failed: u64
§lookups: u64
§hits: u64
§multicast_probes_received: u64
§unicast_probes_received: u64
§periodic_gc_runs: u64
§forced_gc_runs: u64
§table_fulls: u64
Trait Implementations§
source§impl Clone for NeighbourTableStats
impl Clone for NeighbourTableStats
source§fn clone(&self) -> NeighbourTableStats
fn clone(&self) -> NeighbourTableStats
Returns a copy 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 NeighbourTableStats
impl Debug for NeighbourTableStats
source§impl Emitable for NeighbourTableStats
impl Emitable for NeighbourTableStats
source§impl<T: AsRef<[u8]>> Parseable<NeighbourTableStatsBuffer<T>> for NeighbourTableStats
impl<T: AsRef<[u8]>> Parseable<NeighbourTableStatsBuffer<T>> for NeighbourTableStats
source§fn parse(buf: &NeighbourTableStatsBuffer<T>) -> Result<Self, DecodeError>
fn parse(buf: &NeighbourTableStatsBuffer<T>) -> Result<Self, DecodeError>
Deserialize the current type.
source§impl PartialEq for NeighbourTableStats
impl PartialEq for NeighbourTableStats
source§fn eq(&self, other: &NeighbourTableStats) -> bool
fn eq(&self, other: &NeighbourTableStats) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for NeighbourTableStats
impl Eq for NeighbourTableStats
impl StructuralEq for NeighbourTableStats
impl StructuralPartialEq for NeighbourTableStats
Auto Trait Implementations§
impl RefUnwindSafe for NeighbourTableStats
impl Send for NeighbourTableStats
impl Sync for NeighbourTableStats
impl Unpin for NeighbourTableStats
impl UnwindSafe for NeighbourTableStats
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