pub enum BudgetHeaderDisplay {
AvailableToBudget,
Checking,
Savings,
Credit,
Cash,
Investment,
LineOfCredit,
Other,
}Expand description
What to display in the budget header
Variants§
AvailableToBudget
Show Available to Budget / Overspent (default)
Checking
Show total checking account balance
Savings
Show total savings account balance
Credit
Show total credit card balance
Cash
Show total cash balance
Investment
Show total investment balance
LineOfCredit
Show total line of credit balance
Other
Show total for other account types
Implementations§
Trait Implementations§
Source§impl Clone for BudgetHeaderDisplay
impl Clone for BudgetHeaderDisplay
Source§fn clone(&self) -> BudgetHeaderDisplay
fn clone(&self) -> BudgetHeaderDisplay
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 BudgetHeaderDisplay
impl Debug for BudgetHeaderDisplay
Source§impl Default for BudgetHeaderDisplay
impl Default for BudgetHeaderDisplay
Source§fn default() -> BudgetHeaderDisplay
fn default() -> BudgetHeaderDisplay
Returns the “default value” for a type. Read more
Source§impl PartialEq for BudgetHeaderDisplay
impl PartialEq for BudgetHeaderDisplay
impl Copy for BudgetHeaderDisplay
impl Eq for BudgetHeaderDisplay
impl StructuralPartialEq for BudgetHeaderDisplay
Auto Trait Implementations§
impl Freeze for BudgetHeaderDisplay
impl RefUnwindSafe for BudgetHeaderDisplay
impl Send for BudgetHeaderDisplay
impl Sync for BudgetHeaderDisplay
impl Unpin for BudgetHeaderDisplay
impl UnwindSafe for BudgetHeaderDisplay
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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