pub struct MerchantLocationResponseBody {
pub merchant_location: Option<MerchantLocationResponse>,
}Expand description
MerchantLocationResponseBody
JSON schema
{
"type": "object",
"properties": {
"merchant_location": {
"$ref": "#/components/schemas/MerchantLocationResponse"
}
}
}Fields§
§merchant_location: Option<MerchantLocationResponse>Trait Implementations§
Source§impl Clone for MerchantLocationResponseBody
impl Clone for MerchantLocationResponseBody
Source§fn clone(&self) -> MerchantLocationResponseBody
fn clone(&self) -> MerchantLocationResponseBody
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 MerchantLocationResponseBody
impl Debug for MerchantLocationResponseBody
Source§impl<'de> Deserialize<'de> for MerchantLocationResponseBody
impl<'de> Deserialize<'de> for MerchantLocationResponseBody
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 From<&MerchantLocationResponseBody> for MerchantLocationResponseBody
impl From<&MerchantLocationResponseBody> for MerchantLocationResponseBody
Source§fn from(value: &MerchantLocationResponseBody) -> Self
fn from(value: &MerchantLocationResponseBody) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MerchantLocationResponseBody
impl RefUnwindSafe for MerchantLocationResponseBody
impl Send for MerchantLocationResponseBody
impl Sync for MerchantLocationResponseBody
impl Unpin for MerchantLocationResponseBody
impl UnwindSafe for MerchantLocationResponseBody
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