pub struct NotificationStats {
pub total_notifications_sent: u64,
pub total_subscribers: usize,
pub dropped_notifications: u64,
}Expand description
Statistics about the notification bus
Fields§
§total_notifications_sent: u64§total_subscribers: usize§dropped_notifications: u64Trait Implementations§
Source§impl Clone for NotificationStats
impl Clone for NotificationStats
Source§fn clone(&self) -> NotificationStats
fn clone(&self) -> NotificationStats
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 NotificationStats
impl Debug for NotificationStats
Source§impl Default for NotificationStats
impl Default for NotificationStats
Source§fn default() -> NotificationStats
fn default() -> NotificationStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for NotificationStats
impl RefUnwindSafe for NotificationStats
impl Send for NotificationStats
impl Sync for NotificationStats
impl Unpin for NotificationStats
impl UnsafeUnpin for NotificationStats
impl UnwindSafe for NotificationStats
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