struct OrderRow {
order_id: String,
code: String,
side: String,
order_type: i32,
status: i32,
qty: String,
price: String,
fill_qty: String,
fill_avg: String,
update_time: String,
}Fields§
§order_id: String§code: String§side: String§order_type: i32§status: i32§qty: String§price: String§fill_qty: String§fill_avg: String§update_time: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for OrderRow
impl RefUnwindSafe for OrderRow
impl Send for OrderRow
impl Sync for OrderRow
impl Unpin for OrderRow
impl UnsafeUnpin for OrderRow
impl UnwindSafe for OrderRow
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