pub enum FinancialConnectionsAccountCategory {
Cash,
Credit,
Investment,
Other,
}
Expand description
The type of the account. Account category is further divided in subcategory
.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for FinancialConnectionsAccountCategory
impl Clone for FinancialConnectionsAccountCategory
Source§fn clone(&self) -> FinancialConnectionsAccountCategory
fn clone(&self) -> FinancialConnectionsAccountCategory
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 FinancialConnectionsAccountCategory
impl FromValueOpt for FinancialConnectionsAccountCategory
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for FinancialConnectionsAccountCategory
impl PartialEq for FinancialConnectionsAccountCategory
Source§fn eq(&self, other: &FinancialConnectionsAccountCategory) -> bool
fn eq(&self, other: &FinancialConnectionsAccountCategory) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for FinancialConnectionsAccountCategory
impl Eq for FinancialConnectionsAccountCategory
impl StructuralPartialEq for FinancialConnectionsAccountCategory
Auto Trait Implementations§
impl Freeze for FinancialConnectionsAccountCategory
impl RefUnwindSafe for FinancialConnectionsAccountCategory
impl Send for FinancialConnectionsAccountCategory
impl Sync for FinancialConnectionsAccountCategory
impl Unpin for FinancialConnectionsAccountCategory
impl UnwindSafe for FinancialConnectionsAccountCategory
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