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