pub struct LedgerStats {
pub total: usize,
pub pass: usize,
pub reject: usize,
pub flag: usize,
pub unresolved: usize,
pub resolved: usize,
pub waived: usize,
pub needs_human: usize,
pub petition_attempts: u32,
}Fields§
§total: usize§pass: usize§reject: usize§flag: usize§unresolved: usize§resolved: usize§waived: usize§needs_human: usize§petition_attempts: u32Trait 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
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