pub struct ListConditionalOrdersResponse {
pub orders: Option<Vec<ConditionalOrder>>,
pub page: Option<u32>,
pub page_size: Option<u32>,
pub total: Option<u32>,
}Expand description
ListConditionalOrdersResponse
JSON schema
{
"type": "object",
"properties": {
"orders": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/components/schemas/ConditionalOrder"
}
},
"page": {
"type": [
"integer",
"null"
],
"format": "uint32"
},
"pageSize": {
"type": [
"integer",
"null"
],
"format": "uint32"
},
"total": {
"type": [
"integer",
"null"
],
"format": "uint32"
}
}
}Fields§
§orders: Option<Vec<ConditionalOrder>>§page: Option<u32>§page_size: Option<u32>§total: Option<u32>Trait Implementations§
Source§impl Clone for ListConditionalOrdersResponse
impl Clone for ListConditionalOrdersResponse
Source§fn clone(&self) -> ListConditionalOrdersResponse
fn clone(&self) -> ListConditionalOrdersResponse
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<'de> Deserialize<'de> for ListConditionalOrdersResponse
impl<'de> Deserialize<'de> for ListConditionalOrdersResponse
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 ListConditionalOrdersResponse
impl RefUnwindSafe for ListConditionalOrdersResponse
impl Send for ListConditionalOrdersResponse
impl Sync for ListConditionalOrdersResponse
impl Unpin for ListConditionalOrdersResponse
impl UnsafeUnpin for ListConditionalOrdersResponse
impl UnwindSafe for ListConditionalOrdersResponse
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