pub struct AmazonPayContext {
pub store_name: Option<String>,
pub order_type: Option<String>,
pub channel: Option<String>,
}Expand description
AmazonPayContext : Additional information related to Amazon Pay.
Fields§
§store_name: Option<String>Store name related to transaction.
order_type: Option<String>Order type of the transaction.
channel: Option<String>Channel details of related transaction.
Implementations§
Source§impl AmazonPayContext
impl AmazonPayContext
Sourcepub fn new() -> AmazonPayContext
pub fn new() -> AmazonPayContext
Additional information related to Amazon Pay.
Trait Implementations§
Source§impl Clone for AmazonPayContext
impl Clone for AmazonPayContext
Source§fn clone(&self) -> AmazonPayContext
fn clone(&self) -> AmazonPayContext
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 Debug for AmazonPayContext
impl Debug for AmazonPayContext
Source§impl Default for AmazonPayContext
impl Default for AmazonPayContext
Source§fn default() -> AmazonPayContext
fn default() -> AmazonPayContext
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AmazonPayContext
impl<'de> Deserialize<'de> for AmazonPayContext
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 AmazonPayContext
impl PartialEq for AmazonPayContext
Source§impl Serialize for AmazonPayContext
impl Serialize for AmazonPayContext
impl StructuralPartialEq for AmazonPayContext
Auto Trait Implementations§
impl Freeze for AmazonPayContext
impl RefUnwindSafe for AmazonPayContext
impl Send for AmazonPayContext
impl Sync for AmazonPayContext
impl Unpin for AmazonPayContext
impl UnsafeUnpin for AmazonPayContext
impl UnwindSafe for AmazonPayContext
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