Struct binance::rest_model::MarginOrderState
source · [−]pub struct MarginOrderState {Show 17 fields
pub client_order_id: String,
pub cummulative_quote_qty: f64,
pub executed_qty: f64,
pub iceberg_qty: f64,
pub is_working: bool,
pub order_id: u64,
pub orig_qty: f64,
pub price: f64,
pub side: OrderSide,
pub status: OrderStatus,
pub stop_price: f64,
pub symbol: String,
pub is_isolated: Option<bool>,
pub time: u64,
pub time_in_force: TimeInForce,
pub order_type: OrderType,
pub update_time: u64,
}Fields
client_order_id: Stringcummulative_quote_qty: f64executed_qty: f64iceberg_qty: f64is_working: boolorder_id: u64orig_qty: f64price: f64side: OrderSidestatus: OrderStatusstop_price: f64symbol: Stringis_isolated: Option<bool>time: u64time_in_force: TimeInForceorder_type: OrderTypeupdate_time: u64Trait Implementations
sourceimpl Clone for MarginOrderState
impl Clone for MarginOrderState
sourcefn clone(&self) -> MarginOrderState
fn clone(&self) -> MarginOrderState
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for MarginOrderState
impl Debug for MarginOrderState
sourceimpl<'de> Deserialize<'de> for MarginOrderState
impl<'de> Deserialize<'de> for MarginOrderState
sourcefn 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
sourceimpl Serialize for MarginOrderState
impl Serialize for MarginOrderState
Auto Trait Implementations
impl RefUnwindSafe for MarginOrderState
impl Send for MarginOrderState
impl Sync for MarginOrderState
impl Unpin for MarginOrderState
impl UnwindSafe for MarginOrderState
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more