pub struct RetrieveMerchantResponse {
pub errors: Option<Vec<Error>>,
pub merchant: Option<Box<Merchant>>,
}Expand description
RetrieveMerchantResponse : The response object returned by the RetrieveMerchant endpoint.
Fields§
§errors: Option<Vec<Error>>Information on errors encountered during the request.
merchant: Option<Box<Merchant>>Implementations§
Source§impl RetrieveMerchantResponse
impl RetrieveMerchantResponse
Sourcepub fn new() -> RetrieveMerchantResponse
pub fn new() -> RetrieveMerchantResponse
The response object returned by the RetrieveMerchant endpoint.
Trait Implementations§
Source§impl Clone for RetrieveMerchantResponse
impl Clone for RetrieveMerchantResponse
Source§fn clone(&self) -> RetrieveMerchantResponse
fn clone(&self) -> RetrieveMerchantResponse
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 RetrieveMerchantResponse
impl Debug for RetrieveMerchantResponse
Source§impl Default for RetrieveMerchantResponse
impl Default for RetrieveMerchantResponse
Source§fn default() -> RetrieveMerchantResponse
fn default() -> RetrieveMerchantResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RetrieveMerchantResponse
impl<'de> Deserialize<'de> for RetrieveMerchantResponse
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 RetrieveMerchantResponse
impl PartialEq for RetrieveMerchantResponse
Source§impl Serialize for RetrieveMerchantResponse
impl Serialize for RetrieveMerchantResponse
impl StructuralPartialEq for RetrieveMerchantResponse
Auto Trait Implementations§
impl Freeze for RetrieveMerchantResponse
impl RefUnwindSafe for RetrieveMerchantResponse
impl Send for RetrieveMerchantResponse
impl Sync for RetrieveMerchantResponse
impl Unpin for RetrieveMerchantResponse
impl UnsafeUnpin for RetrieveMerchantResponse
impl UnwindSafe for RetrieveMerchantResponse
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