pub struct PaymentMethodData {
pub supported_methods: String,
pub data: Option<HashMap<String, Value>>,
}Expand description
A supported payment method and its associated data.
See: https://www.w3.org/TR/payment-request/#dom-paymentmethoddata
Fields§
§supported_methods: StringPayment method identifier (e.g. "CARD", "google-pay").
data: Option<HashMap<String, Value>>Payment-method-specific data.
Trait Implementations§
Source§impl Clone for PaymentMethodData
impl Clone for PaymentMethodData
Source§fn clone(&self) -> PaymentMethodData
fn clone(&self) -> PaymentMethodData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PaymentMethodData
impl Debug for PaymentMethodData
Source§impl<'de> Deserialize<'de> for PaymentMethodData
impl<'de> Deserialize<'de> for PaymentMethodData
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PaymentMethodData
impl PartialEq for PaymentMethodData
Source§fn eq(&self, other: &PaymentMethodData) -> bool
fn eq(&self, other: &PaymentMethodData) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PaymentMethodData
impl Serialize for PaymentMethodData
impl StructuralPartialEq for PaymentMethodData
Auto Trait Implementations§
impl Freeze for PaymentMethodData
impl RefUnwindSafe for PaymentMethodData
impl Send for PaymentMethodData
impl Sync for PaymentMethodData
impl Unpin for PaymentMethodData
impl UnsafeUnpin for PaymentMethodData
impl UnwindSafe for PaymentMethodData
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