pub struct InstantLoopMetrics {
pub trajectories_processed: AtomicU64,
pub signals_accumulated: AtomicU64,
pub flushes_performed: AtomicU64,
pub updates_applied: AtomicU64,
}Expand description
Instant loop metrics
Fields§
§trajectories_processed: AtomicU64Total trajectories processed
signals_accumulated: AtomicU64Total signals accumulated
flushes_performed: AtomicU64Total flushes performed
updates_applied: AtomicU64Total updates applied
Trait Implementations§
Source§impl Debug for InstantLoopMetrics
impl Debug for InstantLoopMetrics
Source§impl Default for InstantLoopMetrics
impl Default for InstantLoopMetrics
Source§fn default() -> InstantLoopMetrics
fn default() -> InstantLoopMetrics
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl !Freeze for InstantLoopMetrics
impl RefUnwindSafe for InstantLoopMetrics
impl Send for InstantLoopMetrics
impl Sync for InstantLoopMetrics
impl Unpin for InstantLoopMetrics
impl UnwindSafe for InstantLoopMetrics
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