pub struct OpenOrder {
pub order_id: Option<OrderId>,
pub client_order_id: String,
pub instrument: Instrument,
pub market: Market,
pub side: Side,
pub orig_qty: f64,
pub executed_qty: f64,
pub reduce_only: bool,
pub status: OrderStatus,
}Fields§
§order_id: Option<OrderId>§client_order_id: String§instrument: Instrument§market: Market§side: Side§orig_qty: f64§executed_qty: f64§reduce_only: bool§status: OrderStatusTrait Implementations§
impl StructuralPartialEq for OpenOrder
Auto Trait Implementations§
impl Freeze for OpenOrder
impl RefUnwindSafe for OpenOrder
impl Send for OpenOrder
impl Sync for OpenOrder
impl Unpin for OpenOrder
impl UnsafeUnpin for OpenOrder
impl UnwindSafe for OpenOrder
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