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
sourceimpl GetOrderAddressResponse
impl GetOrderAddressResponse
sourcepub fn new() -> GetOrderAddressResponse
pub fn new() -> GetOrderAddressResponse
The response schema for the getOrderAddress operation.
Trait Implementations
sourceimpl Clone for GetOrderAddressResponse
impl Clone for GetOrderAddressResponse
sourcefn clone(&self) -> GetOrderAddressResponse
fn clone(&self) -> GetOrderAddressResponse
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for GetOrderAddressResponse
impl Debug for GetOrderAddressResponse
sourceimpl Default for GetOrderAddressResponse
impl Default for GetOrderAddressResponse
sourcefn default() -> GetOrderAddressResponse
fn default() -> GetOrderAddressResponse
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for GetOrderAddressResponse
impl<'de> Deserialize<'de> for GetOrderAddressResponse
sourcefn 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
sourceimpl PartialEq<GetOrderAddressResponse> for GetOrderAddressResponse
impl PartialEq<GetOrderAddressResponse> for GetOrderAddressResponse
sourcefn eq(&self, other: &GetOrderAddressResponse) -> bool
fn eq(&self, other: &GetOrderAddressResponse) -> bool
sourceimpl Serialize for GetOrderAddressResponse
impl Serialize for GetOrderAddressResponse
impl StructuralPartialEq for GetOrderAddressResponse
Auto Trait Implementations
impl RefUnwindSafe for GetOrderAddressResponse
impl Send for GetOrderAddressResponse
impl Sync for GetOrderAddressResponse
impl Unpin for GetOrderAddressResponse
impl UnwindSafe for GetOrderAddressResponse
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more