#[non_exhaustive]pub enum CreatePaymentMethodCardDetailsParamsNetworksPreferred {
CartesBancaires,
Mastercard,
Visa,
Unknown(String),
}Expand description
The customer’s preferred card network for co-branded cards.
Supports cartes_bancaires, mastercard, or visa.
Selection of a network that does not apply to the card will be stored as invalid_preference on the card.
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.
CartesBancaires
Mastercard
Visa
Unknown(String)
An unrecognized value from Stripe. Should not be used as a request parameter.
Implementations§
Trait Implementations§
Source§impl Clone for CreatePaymentMethodCardDetailsParamsNetworksPreferred
impl Clone for CreatePaymentMethodCardDetailsParamsNetworksPreferred
Source§fn clone(&self) -> CreatePaymentMethodCardDetailsParamsNetworksPreferred
fn clone(&self) -> CreatePaymentMethodCardDetailsParamsNetworksPreferred
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 CreatePaymentMethodCardDetailsParamsNetworksPreferred
Available on non-crate feature redact-generated-debug only.
impl Debug for CreatePaymentMethodCardDetailsParamsNetworksPreferred
Available on non-crate feature
redact-generated-debug only.Source§impl PartialEq for CreatePaymentMethodCardDetailsParamsNetworksPreferred
impl PartialEq for CreatePaymentMethodCardDetailsParamsNetworksPreferred
Source§fn eq(
&self,
other: &CreatePaymentMethodCardDetailsParamsNetworksPreferred,
) -> bool
fn eq( &self, other: &CreatePaymentMethodCardDetailsParamsNetworksPreferred, ) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CreatePaymentMethodCardDetailsParamsNetworksPreferred
impl StructuralPartialEq for CreatePaymentMethodCardDetailsParamsNetworksPreferred
Auto Trait Implementations§
impl Freeze for CreatePaymentMethodCardDetailsParamsNetworksPreferred
impl RefUnwindSafe for CreatePaymentMethodCardDetailsParamsNetworksPreferred
impl Send for CreatePaymentMethodCardDetailsParamsNetworksPreferred
impl Sync for CreatePaymentMethodCardDetailsParamsNetworksPreferred
impl Unpin for CreatePaymentMethodCardDetailsParamsNetworksPreferred
impl UnsafeUnpin for CreatePaymentMethodCardDetailsParamsNetworksPreferred
impl UnwindSafe for CreatePaymentMethodCardDetailsParamsNetworksPreferred
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