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