#[non_exhaustive]pub enum CreateSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnectionsPermissions {
Balances,
Ownership,
PaymentMethod,
Transactions,
Unknown(String),
}Expand description
The list of permissions to request.
If this parameter is passed, the payment_method permission must be included.
Valid permissions include: balances, ownership, payment_method, and transactions.
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.
Balances
Ownership
PaymentMethod
Transactions
Unknown(String)
An unrecognized value from Stripe. Should not be used as a request parameter.
Implementations§
Trait Implementations§
Source§impl Clone for CreateSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnectionsPermissions
impl Clone for CreateSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnectionsPermissions
Source§fn clone(
&self,
) -> CreateSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnectionsPermissions
fn clone( &self, ) -> CreateSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnectionsPermissions
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 CreateSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnectionsPermissions
impl Debug for CreateSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnectionsPermissions
Source§impl Display for CreateSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnectionsPermissions
impl Display for CreateSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnectionsPermissions
Source§impl FromStr for CreateSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnectionsPermissions
impl FromStr for CreateSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnectionsPermissions
Source§impl PartialEq for CreateSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnectionsPermissions
impl PartialEq for CreateSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnectionsPermissions
Source§fn eq(
&self,
other: &CreateSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnectionsPermissions,
) -> bool
fn eq( &self, other: &CreateSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnectionsPermissions, ) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CreateSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnectionsPermissions
impl Serialize for CreateSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnectionsPermissions
impl Eq for CreateSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnectionsPermissions
impl StructuralPartialEq for CreateSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnectionsPermissions
Auto Trait Implementations§
impl Freeze for CreateSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnectionsPermissions
impl RefUnwindSafe for CreateSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnectionsPermissions
impl Send for CreateSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnectionsPermissions
impl Sync for CreateSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnectionsPermissions
impl Unpin for CreateSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnectionsPermissions
impl UnwindSafe for CreateSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnectionsPermissions
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