pub enum ClientAccountType {
Individual,
Joint,
InformalTrust,
Corporation,
InvestmentClub,
FormalTrust,
Partnership,
SoleProprietorship,
Family,
JointAndInformalTrust,
Institution,
}
Expand description
Type of client this account is associated with.
Variants§
Individual
Account held by an individual.
Joint
Account held jointly by several individuals (e.g., spouses).
InformalTrust
Non-individual account held by an informal trust.
Corporation
Non-individual account held by a corporation.
InvestmentClub
Non-individual account held by an investment club.
FormalTrust
Non-individual account held by a formal trust.
Partnership
Non-individual account held by a partnership.
SoleProprietorship
Non-individual account held by a sole proprietorship.
Family
Account held by a family.
JointAndInformalTrust
Non-individual account held by a joint and informal trust.
Institution
Non-individual account held by an institution.
Trait Implementations§
Source§impl Clone for ClientAccountType
impl Clone for ClientAccountType
Source§fn clone(&self) -> ClientAccountType
fn clone(&self) -> ClientAccountType
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 ClientAccountType
impl Debug for ClientAccountType
Source§impl<'de> Deserialize<'de> for ClientAccountType
impl<'de> Deserialize<'de> for ClientAccountType
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 PartialEq for ClientAccountType
impl PartialEq for ClientAccountType
Source§impl Serialize for ClientAccountType
impl Serialize for ClientAccountType
impl StructuralPartialEq for ClientAccountType
Auto Trait Implementations§
impl Freeze for ClientAccountType
impl RefUnwindSafe for ClientAccountType
impl Send for ClientAccountType
impl Sync for ClientAccountType
impl Unpin for ClientAccountType
impl UnwindSafe for ClientAccountType
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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