#[non_exhaustive]pub enum BankAccountAvailablePayoutMethods {
Instant,
Standard,
Unknown(String),
}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 (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Instant
Standard
Unknown(String)
An unrecognized value from Stripe. Should not be used as a request parameter.
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 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