pub struct BatchCreateOrdersRequest {
pub orders: Vec<BatchCreateOrderItem>,
}Expand description
BatchCreateOrdersRequest
JSON schema
{
"type": "object",
"required": [
"orders"
],
"properties": {
"orders": {
"type": "array",
"items": {
"$ref": "#/components/schemas/BatchCreateOrderItem"
},
"minItems": 1
}
},
"additionalProperties": false
}Fields§
§orders: Vec<BatchCreateOrderItem>Trait Implementations§
Source§impl Clone for BatchCreateOrdersRequest
impl Clone for BatchCreateOrdersRequest
Source§fn clone(&self) -> BatchCreateOrdersRequest
fn clone(&self) -> BatchCreateOrdersRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BatchCreateOrdersRequest
impl Debug for BatchCreateOrdersRequest
Source§impl<'de> Deserialize<'de> for BatchCreateOrdersRequest
impl<'de> Deserialize<'de> for BatchCreateOrdersRequest
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
Auto Trait Implementations§
impl Freeze for BatchCreateOrdersRequest
impl RefUnwindSafe for BatchCreateOrdersRequest
impl Send for BatchCreateOrdersRequest
impl Sync for BatchCreateOrdersRequest
impl Unpin for BatchCreateOrdersRequest
impl UnsafeUnpin for BatchCreateOrdersRequest
impl UnwindSafe for BatchCreateOrdersRequest
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