pub struct BatchedOrderList {
pub list: Vec<BatchedOrder>,
}Expand description
Summarizes the list of batched orders.
Part of the BatchPlaceResponse, this struct contains the details of all orders placed in the batch request. Bots use this to confirm order creation and update their state.
Fields§
§list: Vec<BatchedOrder>A list of placed orders.
Contains details like order IDs and symbols for each successfully placed order. Bots should iterate through this to update their internal order book.
Trait Implementations§
Source§impl Clone for BatchedOrderList
impl Clone for BatchedOrderList
Source§fn clone(&self) -> BatchedOrderList
fn clone(&self) -> BatchedOrderList
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 BatchedOrderList
impl Debug for BatchedOrderList
Source§impl<'de> Deserialize<'de> for BatchedOrderList
impl<'de> Deserialize<'de> for BatchedOrderList
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 BatchedOrderList
impl RefUnwindSafe for BatchedOrderList
impl Send for BatchedOrderList
impl Sync for BatchedOrderList
impl Unpin for BatchedOrderList
impl UnsafeUnpin for BatchedOrderList
impl UnwindSafe for BatchedOrderList
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