pub struct RuleTally {
pub observations: u32,
pub improved: u32,
pub regressed: u32,
pub attributed_regressions: u32,
pub last_validated: Option<String>,
}Expand description
What the ledger says about one rule, folded from its rows.
Fields§
§observations: u32Probes whose measured block carried this rule.
improved: u32Block-level outcomes while it rode along — context, not credit.
regressed: u32§attributed_regressions: u32Regressions a bisection pinned on this rule specifically. The number retirement argues from.
last_validated: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for RuleTally
impl RefUnwindSafe for RuleTally
impl Send for RuleTally
impl Sync for RuleTally
impl Unpin for RuleTally
impl UnsafeUnpin for RuleTally
impl UnwindSafe for RuleTally
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