pub struct OrderConfirmationList {
pub list: Vec<OrderConfirmation>,
}Expand description
Summarizes the confirmation status of batched orders.
Part of the BatchPlaceResponse, this struct contains confirmation details for each order in the batch, including success or failure statuses. Bots use this to handle errors for individual orders.
Fields§
§list: Vec<OrderConfirmation>A list of order confirmations.
Contains the status (success or failure) for each order in the batch. Bots should inspect this to identify and handle failed orders.
Trait Implementations§
Source§impl Clone for OrderConfirmationList
impl Clone for OrderConfirmationList
Source§fn clone(&self) -> OrderConfirmationList
fn clone(&self) -> OrderConfirmationList
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 OrderConfirmationList
impl Debug for OrderConfirmationList
Source§impl Default for OrderConfirmationList
impl Default for OrderConfirmationList
Source§fn default() -> OrderConfirmationList
fn default() -> OrderConfirmationList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OrderConfirmationList
impl<'de> Deserialize<'de> for OrderConfirmationList
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 OrderConfirmationList
impl RefUnwindSafe for OrderConfirmationList
impl Send for OrderConfirmationList
impl Sync for OrderConfirmationList
impl Unpin for OrderConfirmationList
impl UnwindSafe for OrderConfirmationList
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