pub struct LedgerStats {
pub total: usize,
pub pass: usize,
pub reject: usize,
pub unresolved: usize,
pub resolved: usize,
pub waived: usize,
}Fields§
§total: usize§pass: usize§reject: usize§unresolved: usize§resolved: usize§waived: usizeTrait Implementations§
Source§impl Clone for LedgerStats
impl Clone for LedgerStats
Source§fn clone(&self) -> LedgerStats
fn clone(&self) -> LedgerStats
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 LedgerStats
impl Debug for LedgerStats
Source§impl Default for LedgerStats
impl Default for LedgerStats
Source§fn default() -> LedgerStats
fn default() -> LedgerStats
Returns the “default value” for a type. Read more
impl Eq for LedgerStats
Source§impl PartialEq for LedgerStats
impl PartialEq for LedgerStats
Source§fn eq(&self, other: &LedgerStats) -> bool
fn eq(&self, other: &LedgerStats) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LedgerStats
Auto Trait Implementations§
impl Freeze for LedgerStats
impl RefUnwindSafe for LedgerStats
impl Send for LedgerStats
impl Sync for LedgerStats
impl Unpin for LedgerStats
impl UnsafeUnpin for LedgerStats
impl UnwindSafe for LedgerStats
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