pub struct LogStats {
pub filtered: u64,
pub sink_failures: u64,
pub dropped: u64,
pub invalid: u64,
}Expand description
Observable dispatcher counters; sink failures never recursively log.
Fields§
§filtered: u64Events filtered before formatting.
sink_failures: u64Sink deliveries that failed.
dropped: u64Events dropped by bounded sinks.
invalid: u64Events rejected because a public event limit was exceeded.
Trait Implementations§
impl Copy for LogStats
impl Eq for LogStats
impl StructuralPartialEq for LogStats
Auto Trait Implementations§
impl Freeze for LogStats
impl RefUnwindSafe for LogStats
impl Send for LogStats
impl Sync for LogStats
impl Unpin for LogStats
impl UnsafeUnpin for LogStats
impl UnwindSafe for LogStats
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