#[non_exhaustive]pub enum CreatePayoutMethod {
Instant,
Standard,
Unknown(String),
}Expand description
The method used to send this payout, which is standard or instant.
We support instant for payouts to debit cards and bank accounts in certain countries.
Learn more about bank support for Instant Payouts.
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 CreatePayoutMethod
impl Clone for CreatePayoutMethod
Source§fn clone(&self) -> CreatePayoutMethod
fn clone(&self) -> CreatePayoutMethod
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 CreatePayoutMethod
impl Debug for CreatePayoutMethod
Source§impl Display for CreatePayoutMethod
impl Display for CreatePayoutMethod
Source§impl FromStr for CreatePayoutMethod
impl FromStr for CreatePayoutMethod
Source§impl PartialEq for CreatePayoutMethod
impl PartialEq for CreatePayoutMethod
Source§impl Serialize for CreatePayoutMethod
impl Serialize for CreatePayoutMethod
impl Eq for CreatePayoutMethod
impl StructuralPartialEq for CreatePayoutMethod
Auto Trait Implementations§
impl Freeze for CreatePayoutMethod
impl RefUnwindSafe for CreatePayoutMethod
impl Send for CreatePayoutMethod
impl Sync for CreatePayoutMethod
impl Unpin for CreatePayoutMethod
impl UnwindSafe for CreatePayoutMethod
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