pub struct TrackerStatistics {
pub entries_processed: u64,
pub lines_processed: u64,
pub total_debits: Decimal,
pub total_credits: Decimal,
pub companies_tracked: usize,
pub accounts_tracked: usize,
pub validation_errors: usize,
}Expand description
Statistics about tracked entries.
Fields§
§entries_processed: u64§lines_processed: u64§total_debits: Decimal§total_credits: Decimal§companies_tracked: usize§accounts_tracked: usize§validation_errors: usizeTrait Implementations§
Source§impl Clone for TrackerStatistics
impl Clone for TrackerStatistics
Source§fn clone(&self) -> TrackerStatistics
fn clone(&self) -> TrackerStatistics
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 moreSource§impl Debug for TrackerStatistics
impl Debug for TrackerStatistics
Source§impl Default for TrackerStatistics
impl Default for TrackerStatistics
Source§fn default() -> TrackerStatistics
fn default() -> TrackerStatistics
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TrackerStatistics
impl RefUnwindSafe for TrackerStatistics
impl Send for TrackerStatistics
impl Sync for TrackerStatistics
impl Unpin for TrackerStatistics
impl UnwindSafe for TrackerStatistics
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