pub enum DisputePaymentMethodDetailsType {
AmazonPay,
Card,
Klarna,
Paypal,
}Expand description
Payment method type.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for DisputePaymentMethodDetailsType
impl Clone for DisputePaymentMethodDetailsType
Source§fn clone(&self) -> DisputePaymentMethodDetailsType
fn clone(&self) -> DisputePaymentMethodDetailsType
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 FromStr for DisputePaymentMethodDetailsType
impl FromStr for DisputePaymentMethodDetailsType
Source§type Err = StripeParseError
type Err = StripeParseError
The associated error which can be returned from parsing.
Source§fn from_str(
s: &str,
) -> Result<DisputePaymentMethodDetailsType, <DisputePaymentMethodDetailsType as FromStr>::Err>
fn from_str( s: &str, ) -> Result<DisputePaymentMethodDetailsType, <DisputePaymentMethodDetailsType as FromStr>::Err>
Parses a string
s to return a value of this type. Read moreSource§impl PartialEq for DisputePaymentMethodDetailsType
impl PartialEq for DisputePaymentMethodDetailsType
Source§fn eq(&self, other: &DisputePaymentMethodDetailsType) -> bool
fn eq(&self, other: &DisputePaymentMethodDetailsType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for DisputePaymentMethodDetailsType
impl Eq for DisputePaymentMethodDetailsType
impl StructuralPartialEq for DisputePaymentMethodDetailsType
Auto Trait Implementations§
impl Freeze for DisputePaymentMethodDetailsType
impl RefUnwindSafe for DisputePaymentMethodDetailsType
impl Send for DisputePaymentMethodDetailsType
impl Sync for DisputePaymentMethodDetailsType
impl Unpin for DisputePaymentMethodDetailsType
impl UnwindSafe for DisputePaymentMethodDetailsType
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