pub struct Metrics {
pub envelope_apply_count: AtomicU64,
pub watcher_changes_detected: AtomicU64,
pub broadcast_lag_count: AtomicU64,
/* private fields */
}Expand description
Metric instruments accessible from anywhere via Metrics::get().
Fields§
§envelope_apply_count: AtomicU64§watcher_changes_detected: AtomicU64§broadcast_lag_count: AtomicU64Implementations§
Auto Trait Implementations§
impl !Freeze for Metrics
impl RefUnwindSafe for Metrics
impl Send for Metrics
impl Sync for Metrics
impl Unpin for Metrics
impl UnsafeUnpin for Metrics
impl UnwindSafe for Metrics
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