pub enum SaveAccountType {
Show 13 variants
Checking,
Savings,
Cash,
CreditCard,
LineOfCredit,
OtherAsset,
OtherLiability,
Mortgage,
AutoLoan,
StudentLoan,
PersonalLoan,
MedicalDebt,
OtherDebt,
}Expand description
The type of account to create or update.
Variants§
Checking
Savings
Cash
CreditCard
LineOfCredit
OtherAsset
OtherLiability
Mortgage
AutoLoan
StudentLoan
PersonalLoan
MedicalDebt
OtherDebt
Trait Implementations§
Source§impl Debug for SaveAccountType
impl Debug for SaveAccountType
Source§impl<'de> Deserialize<'de> for SaveAccountType
impl<'de> Deserialize<'de> for SaveAccountType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for SaveAccountType
impl Serialize for SaveAccountType
Auto Trait Implementations§
impl Freeze for SaveAccountType
impl RefUnwindSafe for SaveAccountType
impl Send for SaveAccountType
impl Sync for SaveAccountType
impl Unpin for SaveAccountType
impl UnsafeUnpin for SaveAccountType
impl UnwindSafe for SaveAccountType
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