pub enum FundingSource {
EmploymentIncome,
Investments,
Inheritance,
BusinessIncome,
Savings,
Family,
}Expand description
Funding source for broker accounts.
Variants§
EmploymentIncome
Employment income.
Investments
Investments.
Inheritance
Inheritance.
BusinessIncome
Business income.
Savings
Savings.
Family
Family.
Trait Implementations§
Source§impl Clone for FundingSource
impl Clone for FundingSource
Source§fn clone(&self) -> FundingSource
fn clone(&self) -> FundingSource
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 FundingSource
impl Debug for FundingSource
Source§impl<'de> Deserialize<'de> for FundingSource
impl<'de> Deserialize<'de> for FundingSource
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<FundingSource, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<FundingSource, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for FundingSource
impl PartialEq for FundingSource
Source§impl Serialize for FundingSource
impl Serialize for FundingSource
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for FundingSource
impl StructuralPartialEq for FundingSource
Auto Trait Implementations§
impl Freeze for FundingSource
impl RefUnwindSafe for FundingSource
impl Send for FundingSource
impl Sync for FundingSource
impl Unpin for FundingSource
impl UnwindSafe for FundingSource
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