pub struct Stats {
pub emitted: u64,
pub dropped: u64,
pub filtered: u64,
pub known_topics: u64,
}Expand description
Per-logger counters.
Fields§
§emitted: u64Successfully emitted lines.
dropped: u64Dropped events, such as empty topics or topic-cap overflow.
filtered: u64Filtered events.
known_topics: u64Number of currently tracked topics.
Trait Implementations§
impl Copy for Stats
impl Eq for Stats
impl StructuralPartialEq for Stats
Auto Trait Implementations§
impl Freeze for Stats
impl RefUnwindSafe for Stats
impl Send for Stats
impl Sync for Stats
impl Unpin for Stats
impl UnsafeUnpin for Stats
impl UnwindSafe for Stats
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