pub struct UserFill {
pub order_id: i64,
pub symbol: String,
pub side: OrderSide,
pub price: Decimal,
pub quantity: Decimal,
pub fee_usd: Decimal,
pub timestamp_ms: i64,
pub cloid: Option<String>,
}Expand description
execution of the user’s own order
Fields§
§order_id: i64§symbol: String§side: OrderSide§price: Decimal§quantity: Decimal§fee_usd: Decimal§timestamp_ms: i64§cloid: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for UserFill
impl RefUnwindSafe for UserFill
impl Send for UserFill
impl Sync for UserFill
impl Unpin for UserFill
impl UnsafeUnpin for UserFill
impl UnwindSafe for UserFill
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