pub struct ListStatusEvent {
pub event_time: u64,
pub symbol: String,
pub order_list_id: u64,
pub contingency_type: String,
pub list_status_type: String,
pub list_order_status: String,
pub list_reject_reason: String,
pub list_client_order_id: String,
pub transaction_time: u64,
pub orders: Vec<ListStatusOrder>,
}Expand description
OCO list status event (user data stream).
Fields§
§event_time: u64Event time.
symbol: StringSymbol.
order_list_id: u64Order list ID.
contingency_type: StringContingency type.
list_status_type: StringList status type.
list_order_status: StringList order status.
list_reject_reason: StringList reject reason.
list_client_order_id: StringList client order ID.
transaction_time: u64Transaction time.
orders: Vec<ListStatusOrder>Orders.
Trait Implementations§
Source§impl Clone for ListStatusEvent
impl Clone for ListStatusEvent
Source§fn clone(&self) -> ListStatusEvent
fn clone(&self) -> ListStatusEvent
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 ListStatusEvent
impl Debug for ListStatusEvent
Source§impl<'de> Deserialize<'de> for ListStatusEvent
impl<'de> Deserialize<'de> for ListStatusEvent
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 ListStatusEvent
impl RefUnwindSafe for ListStatusEvent
impl Send for ListStatusEvent
impl Sync for ListStatusEvent
impl Unpin for ListStatusEvent
impl UnwindSafe for ListStatusEvent
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