#[non_exhaustive]pub enum UpdatePaymentIntentPaymentMethodOptionsCardPresentRoutingRequestedPriority {
Domestic,
International,
Unknown(String),
}Expand description
Routing requested priority
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.
Domestic
International
Unknown(String)
An unrecognized value from Stripe. Should not be used as a request parameter.
Implementations§
Trait Implementations§
Source§impl Clone for UpdatePaymentIntentPaymentMethodOptionsCardPresentRoutingRequestedPriority
impl Clone for UpdatePaymentIntentPaymentMethodOptionsCardPresentRoutingRequestedPriority
Source§fn clone(
&self,
) -> UpdatePaymentIntentPaymentMethodOptionsCardPresentRoutingRequestedPriority
fn clone( &self, ) -> UpdatePaymentIntentPaymentMethodOptionsCardPresentRoutingRequestedPriority
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 UpdatePaymentIntentPaymentMethodOptionsCardPresentRoutingRequestedPriority
impl PartialEq for UpdatePaymentIntentPaymentMethodOptionsCardPresentRoutingRequestedPriority
Source§fn eq(
&self,
other: &UpdatePaymentIntentPaymentMethodOptionsCardPresentRoutingRequestedPriority,
) -> bool
fn eq( &self, other: &UpdatePaymentIntentPaymentMethodOptionsCardPresentRoutingRequestedPriority, ) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for UpdatePaymentIntentPaymentMethodOptionsCardPresentRoutingRequestedPriority
impl Serialize for UpdatePaymentIntentPaymentMethodOptionsCardPresentRoutingRequestedPriority
impl Eq for UpdatePaymentIntentPaymentMethodOptionsCardPresentRoutingRequestedPriority
impl StructuralPartialEq for UpdatePaymentIntentPaymentMethodOptionsCardPresentRoutingRequestedPriority
Auto Trait Implementations§
impl Freeze for UpdatePaymentIntentPaymentMethodOptionsCardPresentRoutingRequestedPriority
impl RefUnwindSafe for UpdatePaymentIntentPaymentMethodOptionsCardPresentRoutingRequestedPriority
impl Send for UpdatePaymentIntentPaymentMethodOptionsCardPresentRoutingRequestedPriority
impl Sync for UpdatePaymentIntentPaymentMethodOptionsCardPresentRoutingRequestedPriority
impl Unpin for UpdatePaymentIntentPaymentMethodOptionsCardPresentRoutingRequestedPriority
impl UnwindSafe for UpdatePaymentIntentPaymentMethodOptionsCardPresentRoutingRequestedPriority
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