pub struct OrderListOpocoResponse {
pub order_list_id: Option<i64>,
pub contingency_type: Option<String>,
pub list_status_type: Option<String>,
pub list_order_status: Option<String>,
pub list_client_order_id: Option<String>,
pub transaction_time: Option<i64>,
pub symbol: Option<String>,
pub orders: Option<Vec<OrderListOpocoResponseOrdersInner>>,
pub order_reports: Option<Vec<OrderListOpocoResponseOrderReportsInner>>,
}Fields§
§order_list_id: Option<i64>§contingency_type: Option<String>§list_status_type: Option<String>§list_order_status: Option<String>§list_client_order_id: Option<String>§transaction_time: Option<i64>§symbol: Option<String>§orders: Option<Vec<OrderListOpocoResponseOrdersInner>>§order_reports: Option<Vec<OrderListOpocoResponseOrderReportsInner>>Implementations§
Source§impl OrderListOpocoResponse
impl OrderListOpocoResponse
pub fn new() -> OrderListOpocoResponse
Trait Implementations§
Source§impl Clone for OrderListOpocoResponse
impl Clone for OrderListOpocoResponse
Source§fn clone(&self) -> OrderListOpocoResponse
fn clone(&self) -> OrderListOpocoResponse
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 Debug for OrderListOpocoResponse
impl Debug for OrderListOpocoResponse
Source§impl Default for OrderListOpocoResponse
impl Default for OrderListOpocoResponse
Source§fn default() -> OrderListOpocoResponse
fn default() -> OrderListOpocoResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OrderListOpocoResponse
impl<'de> Deserialize<'de> for OrderListOpocoResponse
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
Source§impl PartialEq for OrderListOpocoResponse
impl PartialEq for OrderListOpocoResponse
Source§fn eq(&self, other: &OrderListOpocoResponse) -> bool
fn eq(&self, other: &OrderListOpocoResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for OrderListOpocoResponse
impl Serialize for OrderListOpocoResponse
impl StructuralPartialEq for OrderListOpocoResponse
Auto Trait Implementations§
impl Freeze for OrderListOpocoResponse
impl RefUnwindSafe for OrderListOpocoResponse
impl Send for OrderListOpocoResponse
impl Sync for OrderListOpocoResponse
impl Unpin for OrderListOpocoResponse
impl UnsafeUnpin for OrderListOpocoResponse
impl UnwindSafe for OrderListOpocoResponse
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