pub struct QuotingMetricsTracker { /* private fields */ }Expand description
Tracker for quoting metrics.
Holds the close_records_stored counter consumed by
calculate_price.
Implementations§
Source§impl QuotingMetricsTracker
impl QuotingMetricsTracker
Sourcepub fn record_store(&self)
pub fn record_store(&self)
Record that a record was stored.
Sourcepub fn set_records(&self, count: usize)
pub fn set_records(&self, count: usize)
Overwrite the counter with an authoritative count of held records.
This is the deletion-aware path and the SINGLE source of truth for the
priced record count: the handler calls it at quote time with the live
LMDB entry count (current_chunks()), so any record removed from
storage — by delete, prune, or otherwise — is reflected on the next
quote with no per-delete bookkeeping to keep in sync. record_store
remains only an optimistic between-quote hint; the resync overwrites it.
Sourcepub fn records_stored(&self) -> usize
pub fn records_stored(&self) -> usize
Get the number of records stored.
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for QuotingMetricsTracker
impl RefUnwindSafe for QuotingMetricsTracker
impl Send for QuotingMetricsTracker
impl Sync for QuotingMetricsTracker
impl Unpin for QuotingMetricsTracker
impl UnsafeUnpin for QuotingMetricsTracker
impl UnwindSafe for QuotingMetricsTracker
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more