pub struct AmendListStatus {
pub order_list_id: u64,
pub contingency_type: ContingencyType,
pub list_order_status: OcoOrderStatus,
pub list_client_order_id: String,
pub symbol: String,
pub orders: Vec<OcoOrderDetail>,
}Expand description
Order list status for amended orders that are part of order lists.
Fields§
§order_list_id: u64Order list ID.
contingency_type: ContingencyTypeContingency type (e.g., “OTO”, “OCO”).
list_order_status: OcoOrderStatusList order status.
list_client_order_id: StringList client order ID.
symbol: StringSymbol.
orders: Vec<OcoOrderDetail>Orders in this list.
Trait Implementations§
Source§impl Clone for AmendListStatus
impl Clone for AmendListStatus
Source§fn clone(&self) -> AmendListStatus
fn clone(&self) -> AmendListStatus
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 AmendListStatus
impl Debug for AmendListStatus
Source§impl<'de> Deserialize<'de> for AmendListStatus
impl<'de> Deserialize<'de> for AmendListStatus
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 AmendListStatus
impl RefUnwindSafe for AmendListStatus
impl Send for AmendListStatus
impl Sync for AmendListStatus
impl Unpin for AmendListStatus
impl UnwindSafe for AmendListStatus
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