pub enum FinancialConnectionsAccountSubcategory {
Checking,
CreditCard,
LineOfCredit,
Mortgage,
Other,
Savings,
}
Expand description
If category
is cash
, one of:
checking
savings
other
If category
is credit
, one of:
mortgage
line_of_credit
credit_card
other
If category
is investment
or other
, this will be other
.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for FinancialConnectionsAccountSubcategory
impl Clone for FinancialConnectionsAccountSubcategory
Source§fn clone(&self) -> FinancialConnectionsAccountSubcategory
fn clone(&self) -> FinancialConnectionsAccountSubcategory
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 FromValueOpt for FinancialConnectionsAccountSubcategory
impl FromValueOpt for FinancialConnectionsAccountSubcategory
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for FinancialConnectionsAccountSubcategory
impl PartialEq for FinancialConnectionsAccountSubcategory
Source§fn eq(&self, other: &FinancialConnectionsAccountSubcategory) -> bool
fn eq(&self, other: &FinancialConnectionsAccountSubcategory) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for FinancialConnectionsAccountSubcategory
impl Eq for FinancialConnectionsAccountSubcategory
impl StructuralPartialEq for FinancialConnectionsAccountSubcategory
Auto Trait Implementations§
impl Freeze for FinancialConnectionsAccountSubcategory
impl RefUnwindSafe for FinancialConnectionsAccountSubcategory
impl Send for FinancialConnectionsAccountSubcategory
impl Sync for FinancialConnectionsAccountSubcategory
impl Unpin for FinancialConnectionsAccountSubcategory
impl UnwindSafe for FinancialConnectionsAccountSubcategory
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