pub struct QueryMarginAccountsOcoResponse {
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 is_isolated: Option<bool>,
pub orders: Option<Vec<QueryMarginAccountsOcoResponseOrdersInner>>,
}Fields§
§order_list_id: Option<i64>order List Id.
contingency_type: Option<String>contingency Type.
list_status_type: Option<String>list Status Type.
list_order_status: Option<String>list Order Status.
list_client_order_id: Option<String>list Client Order Id.
transaction_time: Option<i64>transaction Time.
symbol: Option<String>symbol.
is_isolated: Option<bool>if isolated margin
orders: Option<Vec<QueryMarginAccountsOcoResponseOrdersInner>>orders list.
Implementations§
Trait Implementations§
Source§impl Clone for QueryMarginAccountsOcoResponse
impl Clone for QueryMarginAccountsOcoResponse
Source§fn clone(&self) -> QueryMarginAccountsOcoResponse
fn clone(&self) -> QueryMarginAccountsOcoResponse
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 Default for QueryMarginAccountsOcoResponse
impl Default for QueryMarginAccountsOcoResponse
Source§fn default() -> QueryMarginAccountsOcoResponse
fn default() -> QueryMarginAccountsOcoResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for QueryMarginAccountsOcoResponse
impl<'de> Deserialize<'de> for QueryMarginAccountsOcoResponse
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
impl StructuralPartialEq for QueryMarginAccountsOcoResponse
Auto Trait Implementations§
impl Freeze for QueryMarginAccountsOcoResponse
impl RefUnwindSafe for QueryMarginAccountsOcoResponse
impl Send for QueryMarginAccountsOcoResponse
impl Sync for QueryMarginAccountsOcoResponse
impl Unpin for QueryMarginAccountsOcoResponse
impl UnsafeUnpin for QueryMarginAccountsOcoResponse
impl UnwindSafe for QueryMarginAccountsOcoResponse
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