pub struct GetOrderAddressResponse {
pub payload: Option<Box<OrderAddress>>,
pub errors: Option<Vec<Error>>,
}Expand description
GetOrderAddressResponse : The response schema for the getOrderAddress operation.
Fields§
§payload: Option<Box<OrderAddress>>§errors: Option<Vec<Error>>A list of error responses returned when a request is unsuccessful.
Implementations§
Source§impl GetOrderAddressResponse
impl GetOrderAddressResponse
Sourcepub fn new() -> GetOrderAddressResponse
pub fn new() -> GetOrderAddressResponse
The response schema for the getOrderAddress operation.
Trait Implementations§
Source§impl Clone for GetOrderAddressResponse
impl Clone for GetOrderAddressResponse
Source§fn clone(&self) -> GetOrderAddressResponse
fn clone(&self) -> GetOrderAddressResponse
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 GetOrderAddressResponse
impl Debug for GetOrderAddressResponse
Source§impl Default for GetOrderAddressResponse
impl Default for GetOrderAddressResponse
Source§fn default() -> GetOrderAddressResponse
fn default() -> GetOrderAddressResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetOrderAddressResponse
impl<'de> Deserialize<'de> for GetOrderAddressResponse
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 GetOrderAddressResponse
impl PartialEq for GetOrderAddressResponse
Source§impl Serialize for GetOrderAddressResponse
impl Serialize for GetOrderAddressResponse
impl StructuralPartialEq for GetOrderAddressResponse
Auto Trait Implementations§
impl Freeze for GetOrderAddressResponse
impl RefUnwindSafe for GetOrderAddressResponse
impl Send for GetOrderAddressResponse
impl Sync for GetOrderAddressResponse
impl Unpin for GetOrderAddressResponse
impl UnsafeUnpin for GetOrderAddressResponse
impl UnwindSafe for GetOrderAddressResponse
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