pub struct ExportRestoreCounts {
pub accounts: usize,
pub category_groups: usize,
pub categories: usize,
pub transactions: usize,
pub allocations: usize,
pub payees: usize,
}Expand description
Detailed counts for export format restores
Fields§
§accounts: usizeNumber of accounts restored
category_groups: usizeNumber of category groups restored
categories: usizeNumber of categories restored
transactions: usizeNumber of transactions restored
allocations: usizeNumber of allocations restored
payees: usizeNumber of payees restored
Trait Implementations§
Source§impl Clone for ExportRestoreCounts
impl Clone for ExportRestoreCounts
Source§fn clone(&self) -> ExportRestoreCounts
fn clone(&self) -> ExportRestoreCounts
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 ExportRestoreCounts
impl Debug for ExportRestoreCounts
Source§impl Default for ExportRestoreCounts
impl Default for ExportRestoreCounts
Source§fn default() -> ExportRestoreCounts
fn default() -> ExportRestoreCounts
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ExportRestoreCounts
impl RefUnwindSafe for ExportRestoreCounts
impl Send for ExportRestoreCounts
impl Sync for ExportRestoreCounts
impl Unpin for ExportRestoreCounts
impl UnwindSafe for ExportRestoreCounts
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more