pub struct LedgerSummary {
pub total_decisions: u64,
pub stored_decisions: u64,
pub domains: Vec<DomainSummary>,
}Expand description
Summary of ledger contents.
Fields§
§total_decisions: u64Total decisions ever recorded.
stored_decisions: u64Decisions currently stored in the ring buffer.
domains: Vec<DomainSummary>Per-domain statistics.
Trait Implementations§
Source§impl Clone for LedgerSummary
impl Clone for LedgerSummary
Source§fn clone(&self) -> LedgerSummary
fn clone(&self) -> LedgerSummary
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for LedgerSummary
impl RefUnwindSafe for LedgerSummary
impl Send for LedgerSummary
impl Sync for LedgerSummary
impl Unpin for LedgerSummary
impl UnsafeUnpin for LedgerSummary
impl UnwindSafe for LedgerSummary
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