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