pub struct RawOpenOrder {
pub order_id: Option<String>,
pub client_order_id: String,
pub symbol: String,
pub market: Market,
pub side: &'static str,
pub orig_qty: f64,
pub executed_qty: f64,
pub reduce_only: bool,
pub status: String,
}Fields§
§order_id: Option<String>§client_order_id: String§symbol: String§market: Market§side: &'static str§orig_qty: f64§executed_qty: f64§reduce_only: bool§status: StringTrait Implementations§
Source§impl Clone for RawOpenOrder
impl Clone for RawOpenOrder
Source§fn clone(&self) -> RawOpenOrder
fn clone(&self) -> RawOpenOrder
Returns a duplicate of the value. Read more
1.0.0 · 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 RawOpenOrder
impl Debug for RawOpenOrder
Source§impl PartialEq for RawOpenOrder
impl PartialEq for RawOpenOrder
impl StructuralPartialEq for RawOpenOrder
Auto Trait Implementations§
impl Freeze for RawOpenOrder
impl RefUnwindSafe for RawOpenOrder
impl Send for RawOpenOrder
impl Sync for RawOpenOrder
impl Unpin for RawOpenOrder
impl UnsafeUnpin for RawOpenOrder
impl UnwindSafe for RawOpenOrder
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