pub enum AccountUnificationAccountControllerType {
Account,
Application,
}
Expand description
The controller type.
Can be application
, if a Connect application controls the account, or account
, if the account controls itself.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for AccountUnificationAccountControllerType
impl Clone for AccountUnificationAccountControllerType
Source§fn clone(&self) -> AccountUnificationAccountControllerType
fn clone(&self) -> AccountUnificationAccountControllerType
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 FromStr for AccountUnificationAccountControllerType
impl FromStr for AccountUnificationAccountControllerType
Source§type Err = StripeParseError
type Err = StripeParseError
The associated error which can be returned from parsing.
Source§fn from_str(
s: &str,
) -> Result<AccountUnificationAccountControllerType, <AccountUnificationAccountControllerType as FromStr>::Err>
fn from_str( s: &str, ) -> Result<AccountUnificationAccountControllerType, <AccountUnificationAccountControllerType as FromStr>::Err>
Parses a string
s
to return a value of this type. Read moreSource§impl PartialEq for AccountUnificationAccountControllerType
impl PartialEq for AccountUnificationAccountControllerType
Source§fn eq(&self, other: &AccountUnificationAccountControllerType) -> bool
fn eq(&self, other: &AccountUnificationAccountControllerType) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for AccountUnificationAccountControllerType
impl Eq for AccountUnificationAccountControllerType
impl StructuralPartialEq for AccountUnificationAccountControllerType
Auto Trait Implementations§
impl Freeze for AccountUnificationAccountControllerType
impl RefUnwindSafe for AccountUnificationAccountControllerType
impl Send for AccountUnificationAccountControllerType
impl Sync for AccountUnificationAccountControllerType
impl Unpin for AccountUnificationAccountControllerType
impl UnwindSafe for AccountUnificationAccountControllerType
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