#[non_exhaustive]pub enum UpdatePaymentMethodCardNetworksPreferred {
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 UpdatePaymentMethodCardNetworksPreferred
impl Clone for UpdatePaymentMethodCardNetworksPreferred
Source§fn clone(&self) -> UpdatePaymentMethodCardNetworksPreferred
fn clone(&self) -> UpdatePaymentMethodCardNetworksPreferred
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 UpdatePaymentMethodCardNetworksPreferred
Available on non-crate feature redact-generated-debug only.
impl Debug for UpdatePaymentMethodCardNetworksPreferred
Available on non-crate feature
redact-generated-debug only.Source§impl PartialEq for UpdatePaymentMethodCardNetworksPreferred
impl PartialEq for UpdatePaymentMethodCardNetworksPreferred
Source§fn eq(&self, other: &UpdatePaymentMethodCardNetworksPreferred) -> bool
fn eq(&self, other: &UpdatePaymentMethodCardNetworksPreferred) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for UpdatePaymentMethodCardNetworksPreferred
impl StructuralPartialEq for UpdatePaymentMethodCardNetworksPreferred
Auto Trait Implementations§
impl Freeze for UpdatePaymentMethodCardNetworksPreferred
impl RefUnwindSafe for UpdatePaymentMethodCardNetworksPreferred
impl Send for UpdatePaymentMethodCardNetworksPreferred
impl Sync for UpdatePaymentMethodCardNetworksPreferred
impl Unpin for UpdatePaymentMethodCardNetworksPreferred
impl UnsafeUnpin for UpdatePaymentMethodCardNetworksPreferred
impl UnwindSafe for UpdatePaymentMethodCardNetworksPreferred
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