pub enum CreateAccountControllerFeesPayer {
Account,
Application,
}
Expand description
A value indicating the responsible payer of Stripe fees on this account.
Defaults to account
.
Learn more about fee behavior on connected accounts.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for CreateAccountControllerFeesPayer
impl Clone for CreateAccountControllerFeesPayer
Source§fn clone(&self) -> CreateAccountControllerFeesPayer
fn clone(&self) -> CreateAccountControllerFeesPayer
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 PartialEq for CreateAccountControllerFeesPayer
impl PartialEq for CreateAccountControllerFeesPayer
Source§fn eq(&self, other: &CreateAccountControllerFeesPayer) -> bool
fn eq(&self, other: &CreateAccountControllerFeesPayer) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for CreateAccountControllerFeesPayer
impl Eq for CreateAccountControllerFeesPayer
impl StructuralPartialEq for CreateAccountControllerFeesPayer
Auto Trait Implementations§
impl Freeze for CreateAccountControllerFeesPayer
impl RefUnwindSafe for CreateAccountControllerFeesPayer
impl Send for CreateAccountControllerFeesPayer
impl Sync for CreateAccountControllerFeesPayer
impl Unpin for CreateAccountControllerFeesPayer
impl UnwindSafe for CreateAccountControllerFeesPayer
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