pub struct DaemonStats {
pub events_processed: u64,
pub events_emitted: u64,
pub errors: u64,
pub snapshots_taken: u64,
}Expand description
Runtime statistics for a daemon.
Fields§
§events_processed: u64Total events processed.
events_emitted: u64Total output events emitted.
errors: u64Total processing errors.
snapshots_taken: u64Number of snapshots taken.
Trait Implementations§
Source§impl Clone for DaemonStats
impl Clone for DaemonStats
Source§fn clone(&self) -> DaemonStats
fn clone(&self) -> DaemonStats
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 DaemonStats
impl Debug for DaemonStats
Source§impl Default for DaemonStats
impl Default for DaemonStats
Source§fn default() -> DaemonStats
fn default() -> DaemonStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DaemonStats
impl RefUnwindSafe for DaemonStats
impl Send for DaemonStats
impl Sync for DaemonStats
impl Unpin for DaemonStats
impl UnsafeUnpin for DaemonStats
impl UnwindSafe for DaemonStats
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