pub struct GetOrderResponse {Show 20 fields
pub symbol: Option<String>,
pub order_id: Option<i64>,
pub order_list_id: Option<i64>,
pub client_order_id: Option<String>,
pub price: Option<String>,
pub orig_qty: Option<String>,
pub executed_qty: Option<String>,
pub cummulative_quote_qty: Option<String>,
pub status: Option<String>,
pub time_in_force: Option<String>,
pub type: Option<String>,
pub side: Option<String>,
pub stop_price: Option<String>,
pub iceberg_qty: Option<String>,
pub time: Option<i64>,
pub update_time: Option<i64>,
pub is_working: Option<bool>,
pub working_time: Option<i64>,
pub orig_quote_order_qty: Option<String>,
pub self_trade_prevention_mode: Option<String>,
}Fields§
§symbol: Option<String>§order_id: Option<i64>§order_list_id: Option<i64>§client_order_id: Option<String>§price: Option<String>§orig_qty: Option<String>§executed_qty: Option<String>§cummulative_quote_qty: Option<String>§status: Option<String>§time_in_force: Option<String>§type: Option<String>§side: Option<String>§stop_price: Option<String>§iceberg_qty: Option<String>§time: Option<i64>§update_time: Option<i64>§is_working: Option<bool>§working_time: Option<i64>§orig_quote_order_qty: Option<String>§self_trade_prevention_mode: Option<String>Implementations§
Source§impl GetOrderResponse
impl GetOrderResponse
pub fn new() -> GetOrderResponse
Trait Implementations§
Source§impl Clone for GetOrderResponse
impl Clone for GetOrderResponse
Source§fn clone(&self) -> GetOrderResponse
fn clone(&self) -> GetOrderResponse
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 GetOrderResponse
impl Debug for GetOrderResponse
Source§impl Default for GetOrderResponse
impl Default for GetOrderResponse
Source§fn default() -> GetOrderResponse
fn default() -> GetOrderResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetOrderResponse
impl<'de> Deserialize<'de> for GetOrderResponse
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 GetOrderResponse
impl PartialEq for GetOrderResponse
Source§fn eq(&self, other: &GetOrderResponse) -> bool
fn eq(&self, other: &GetOrderResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GetOrderResponse
impl Serialize for GetOrderResponse
impl StructuralPartialEq for GetOrderResponse
Auto Trait Implementations§
impl Freeze for GetOrderResponse
impl RefUnwindSafe for GetOrderResponse
impl Send for GetOrderResponse
impl Sync for GetOrderResponse
impl Unpin for GetOrderResponse
impl UnsafeUnpin for GetOrderResponse
impl UnwindSafe for GetOrderResponse
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