pub struct QueueStats {
pub total_pushed: u64,
pub overflow_count: u64,
pub dedup_count: u64,
pub user_dismissed: u64,
pub auto_expired: u64,
}Expand description
Queue statistics for monitoring and debugging.
Fields§
§total_pushed: u64Total notifications pushed.
overflow_count: u64Notifications rejected due to queue overflow.
dedup_count: u64Notifications rejected due to deduplication.
user_dismissed: u64Notifications dismissed by user.
auto_expired: u64Notifications expired automatically.
Trait Implementations§
Source§impl Clone for QueueStats
impl Clone for QueueStats
Source§fn clone(&self) -> QueueStats
fn clone(&self) -> QueueStats
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 QueueStats
impl Debug for QueueStats
Source§impl Default for QueueStats
impl Default for QueueStats
Source§fn default() -> QueueStats
fn default() -> QueueStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for QueueStats
impl RefUnwindSafe for QueueStats
impl Send for QueueStats
impl Sync for QueueStats
impl Unpin for QueueStats
impl UnsafeUnpin for QueueStats
impl UnwindSafe for QueueStats
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