pub enum BankAccountAvailablePayoutMethods {
Instant,
Standard,
}
Expand description
A set of available payout methods for this bank account.
Only values from this set should be passed as the method
when creating a payout.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for BankAccountAvailablePayoutMethods
impl Clone for BankAccountAvailablePayoutMethods
Source§fn clone(&self) -> BankAccountAvailablePayoutMethods
fn clone(&self) -> BankAccountAvailablePayoutMethods
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 FromValueOpt for BankAccountAvailablePayoutMethods
impl FromValueOpt for BankAccountAvailablePayoutMethods
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for BankAccountAvailablePayoutMethods
impl PartialEq for BankAccountAvailablePayoutMethods
Source§fn eq(&self, other: &BankAccountAvailablePayoutMethods) -> bool
fn eq(&self, other: &BankAccountAvailablePayoutMethods) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for BankAccountAvailablePayoutMethods
impl Eq for BankAccountAvailablePayoutMethods
impl StructuralPartialEq for BankAccountAvailablePayoutMethods
Auto Trait Implementations§
impl Freeze for BankAccountAvailablePayoutMethods
impl RefUnwindSafe for BankAccountAvailablePayoutMethods
impl Send for BankAccountAvailablePayoutMethods
impl Sync for BankAccountAvailablePayoutMethods
impl Unpin for BankAccountAvailablePayoutMethods
impl UnwindSafe for BankAccountAvailablePayoutMethods
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