pub struct RetrieveCardResponse {
pub errors: Option<Vec<Error>>,
pub card: Option<Box<Card>>,
}Expand description
RetrieveCardResponse : Defines the fields that are included in the response body of a request to the RetrieveCard endpoint. Note: if there are errors processing the request, the card field will not be present.
Fields§
§errors: Option<Vec<Error>>Information on errors encountered during the request.
card: Option<Box<Card>>Implementations§
Source§impl RetrieveCardResponse
impl RetrieveCardResponse
Sourcepub fn new() -> RetrieveCardResponse
pub fn new() -> RetrieveCardResponse
Defines the fields that are included in the response body of a request to the RetrieveCard endpoint. Note: if there are errors processing the request, the card field will not be present.
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 (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 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
Source§impl Serialize for RetrieveCardResponse
impl Serialize 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 UnsafeUnpin 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