pub enum AccountBusinessType {
Company,
GovernmentEntity,
Individual,
NonProfit,
}
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for AccountBusinessType
impl Clone for AccountBusinessType
Source§fn clone(&self) -> AccountBusinessType
fn clone(&self) -> AccountBusinessType
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 AccountBusinessType
impl Debug for AccountBusinessType
Source§impl Deserialize for AccountBusinessType
impl Deserialize for AccountBusinessType
Source§impl Display for AccountBusinessType
impl Display for AccountBusinessType
Source§impl FromStr for AccountBusinessType
impl FromStr for AccountBusinessType
Source§type Err = StripeParseError
type Err = StripeParseError
The associated error which can be returned from parsing.
Source§fn from_str(
s: &str,
) -> Result<AccountBusinessType, <AccountBusinessType as FromStr>::Err>
fn from_str( s: &str, ) -> Result<AccountBusinessType, <AccountBusinessType as FromStr>::Err>
Parses a string
s
to return a value of this type. Read moreSource§impl PartialEq for AccountBusinessType
impl PartialEq for AccountBusinessType
Source§impl Serialize for AccountBusinessType
impl Serialize for AccountBusinessType
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 Copy for AccountBusinessType
impl Eq for AccountBusinessType
impl StructuralPartialEq for AccountBusinessType
Auto Trait Implementations§
impl Freeze for AccountBusinessType
impl RefUnwindSafe for AccountBusinessType
impl Send for AccountBusinessType
impl Sync for AccountBusinessType
impl Unpin for AccountBusinessType
impl UnwindSafe for AccountBusinessType
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