pub struct OrderFill {
pub fill_id: u64,
pub fill_id_ex: String,
pub order_id: u64,
pub trd_side: i32,
pub code: String,
pub name: String,
pub qty: f64,
pub price: f64,
pub create_time: String,
}Expand description
成交信息
Fields§
§fill_id: u64§fill_id_ex: String§order_id: u64§trd_side: i32§code: String§name: String§qty: f64§price: f64§create_time: StringImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for OrderFill
impl RefUnwindSafe for OrderFill
impl Send for OrderFill
impl Sync for OrderFill
impl Unpin for OrderFill
impl UnwindSafe for OrderFill
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