pub struct CreatePaymentMethodConfigurationCard {
pub display_preference: Option<CreatePaymentMethodConfigurationCardDisplayPreference>,
}Expand description
Cards are a popular way for consumers and businesses to pay online or in person. Stripe supports global and local card networks.
Fields§
§display_preference: Option<CreatePaymentMethodConfigurationCardDisplayPreference>Whether or not the payment method should be displayed.
Implementations§
Trait Implementations§
Source§impl Clone for CreatePaymentMethodConfigurationCard
impl Clone for CreatePaymentMethodConfigurationCard
Source§fn clone(&self) -> CreatePaymentMethodConfigurationCard
fn clone(&self) -> CreatePaymentMethodConfigurationCard
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 CreatePaymentMethodConfigurationCard
impl PartialEq for CreatePaymentMethodConfigurationCard
Source§fn eq(&self, other: &CreatePaymentMethodConfigurationCard) -> bool
fn eq(&self, other: &CreatePaymentMethodConfigurationCard) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CreatePaymentMethodConfigurationCard
impl StructuralPartialEq for CreatePaymentMethodConfigurationCard
Auto Trait Implementations§
impl Freeze for CreatePaymentMethodConfigurationCard
impl RefUnwindSafe for CreatePaymentMethodConfigurationCard
impl Send for CreatePaymentMethodConfigurationCard
impl Sync for CreatePaymentMethodConfigurationCard
impl Unpin for CreatePaymentMethodConfigurationCard
impl UnsafeUnpin for CreatePaymentMethodConfigurationCard
impl UnwindSafe for CreatePaymentMethodConfigurationCard
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