pub struct AccountAnalysis<TxCat: TransactionCategory> { /* private fields */ }Implementations§
Source§impl<TxCat: TransactionCategory> AccountAnalysis<TxCat>
impl<TxCat: TransactionCategory> AccountAnalysis<TxCat>
pub fn flags(&self) -> &AccountAnalysisFlags
pub fn histogram_display_strategy(&self) -> &HistogramDisplayStrategy
pub fn year(&self) -> &TrackedYear
pub fn accounts(&self) -> &Vec<AccountKind>
pub fn donations(&self) -> &Vec<Donation>
pub fn amazon_biz_items(&self) -> &Option<Vec<AmazonStoreBusinessPurchase>>
pub fn amazon_med_items(&self) -> &Option<Vec<AmazonStoreMedicalPurchase>>
pub fn category_map(&self) -> &CategoryMap<TxCat>
Source§impl<TxCat: TransactionCategory + 'static> AccountAnalysis<TxCat>
impl<TxCat: TransactionCategory + 'static> AccountAnalysis<TxCat>
pub fn full_analysis( &self, program_config: &ProgramConfig, ) -> Result<(), AccountError>
Trait Implementations§
Source§impl<TxCat: Debug + TransactionCategory> Debug for AccountAnalysis<TxCat>
impl<TxCat: Debug + TransactionCategory> Debug for AccountAnalysis<TxCat>
Source§impl<TxCat: Default + TransactionCategory> Default for AccountAnalysis<TxCat>
impl<TxCat: Default + TransactionCategory> Default for AccountAnalysis<TxCat>
Source§fn default() -> AccountAnalysis<TxCat>
fn default() -> AccountAnalysis<TxCat>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<TxCat> Freeze for AccountAnalysis<TxCat>
impl<TxCat> RefUnwindSafe for AccountAnalysis<TxCat>where
TxCat: RefUnwindSafe,
impl<TxCat> Send for AccountAnalysis<TxCat>where
TxCat: Send,
impl<TxCat> Sync for AccountAnalysis<TxCat>where
TxCat: Sync,
impl<TxCat> Unpin for AccountAnalysis<TxCat>where
TxCat: Unpin,
impl<TxCat> UnwindSafe for AccountAnalysis<TxCat>where
TxCat: UnwindSafe,
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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