pub struct EventRouterStats {
pub routed_events: usize,
pub drained_events: usize,
pub dropped_best_effort_events: usize,
}Expand description
Event router statistics.
Fields§
§routed_events: usizeEvents accepted by target queues.
drained_events: usizeReady events drained for station application.
dropped_best_effort_events: usizeBest-effort events dropped by bounded target queues.
Trait Implementations§
Source§impl Clone for EventRouterStats
impl Clone for EventRouterStats
Source§fn clone(&self) -> EventRouterStats
fn clone(&self) -> EventRouterStats
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 EventRouterStats
Source§impl Debug for EventRouterStats
impl Debug for EventRouterStats
Source§impl Default for EventRouterStats
impl Default for EventRouterStats
Source§fn default() -> EventRouterStats
fn default() -> EventRouterStats
Returns the “default value” for a type. Read more
impl Eq for EventRouterStats
Source§impl PartialEq for EventRouterStats
impl PartialEq for EventRouterStats
impl StructuralPartialEq for EventRouterStats
Auto Trait Implementations§
impl Freeze for EventRouterStats
impl RefUnwindSafe for EventRouterStats
impl Send for EventRouterStats
impl Sync for EventRouterStats
impl Unpin for EventRouterStats
impl UnsafeUnpin for EventRouterStats
impl UnwindSafe for EventRouterStats
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