pub struct CheckTally {
pub pass: u64,
pub fail: u64,
pub elapsed: Duration,
}Available on crate feature
quality only.Expand description
Per-check counters + elapsed time, keyed by check name. Emitted as metrics by the observability wrapper.
Note: for per-record checks pass/fail count individual records; for
per-batch checks they count check evaluations (at most one per page).
Per-record quarantine volume for batch checks is exposed separately via
the faucet_quality_records_quarantined_total metric.
Fields§
§pass: u64§fail: u64§elapsed: DurationTrait Implementations§
Source§impl Clone for CheckTally
impl Clone for CheckTally
Source§fn clone(&self) -> CheckTally
fn clone(&self) -> CheckTally
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 CheckTally
impl Debug for CheckTally
Source§impl Default for CheckTally
impl Default for CheckTally
Source§fn default() -> CheckTally
fn default() -> CheckTally
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CheckTally
impl RefUnwindSafe for CheckTally
impl Send for CheckTally
impl Sync for CheckTally
impl Unpin for CheckTally
impl UnsafeUnpin for CheckTally
impl UnwindSafe for CheckTally
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