pub struct RetrieveCardResponse {
pub errors: Option<Vec<Error>>,
pub card: Card,
}
Expand description
This is a model struct for RetrieveCardResponse type
Fields§
§errors: Option<Vec<Error>>
Information on errors encountered during the request.
card: Card
Represents the payment details of a card to be used for payments. These details are determined by the payment token generated by Web Payments SDK.
Trait Implementations§
Source§impl Clone for RetrieveCardResponse
impl Clone for RetrieveCardResponse
Source§fn clone(&self) -> RetrieveCardResponse
fn clone(&self) -> RetrieveCardResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RetrieveCardResponse
impl Debug for RetrieveCardResponse
Source§impl Default for RetrieveCardResponse
impl Default for RetrieveCardResponse
Source§fn default() -> RetrieveCardResponse
fn default() -> RetrieveCardResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RetrieveCardResponse
impl<'de> Deserialize<'de> for RetrieveCardResponse
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 RetrieveCardResponse
impl PartialEq for RetrieveCardResponse
impl Eq for RetrieveCardResponse
impl StructuralPartialEq for RetrieveCardResponse
Auto Trait Implementations§
impl Freeze for RetrieveCardResponse
impl RefUnwindSafe for RetrieveCardResponse
impl Send for RetrieveCardResponse
impl Sync for RetrieveCardResponse
impl Unpin for RetrieveCardResponse
impl UnwindSafe for RetrieveCardResponse
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.