pub struct BatchGetOrdersResponse {
pub orders: Option<Vec<Order>>,
}Expand description
Response for the orders.batchGet API.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- batchget orders (response)
Fields§
§orders: Option<Vec<Order>>Details for the requested order IDs.
Trait Implementations§
Source§impl Clone for BatchGetOrdersResponse
impl Clone for BatchGetOrdersResponse
Source§fn clone(&self) -> BatchGetOrdersResponse
fn clone(&self) -> BatchGetOrdersResponse
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 BatchGetOrdersResponse
impl Debug for BatchGetOrdersResponse
Source§impl Default for BatchGetOrdersResponse
impl Default for BatchGetOrdersResponse
Source§fn default() -> BatchGetOrdersResponse
fn default() -> BatchGetOrdersResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BatchGetOrdersResponse
impl<'de> Deserialize<'de> for BatchGetOrdersResponse
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 Serialize for BatchGetOrdersResponse
impl Serialize for BatchGetOrdersResponse
impl ResponseResult for BatchGetOrdersResponse
Auto Trait Implementations§
impl Freeze for BatchGetOrdersResponse
impl RefUnwindSafe for BatchGetOrdersResponse
impl Send for BatchGetOrdersResponse
impl Sync for BatchGetOrdersResponse
impl Unpin for BatchGetOrdersResponse
impl UnwindSafe for BatchGetOrdersResponse
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