pub struct Fill {
pub trade_id: Option<i64>,
pub client_id: Option<String>,
pub order_id: String,
pub symbol: String,
pub fee_symbol: String,
pub price: Decimal,
pub quantity: Decimal,
pub fee: Decimal,
pub side: Side,
pub timestamp: String,
pub is_maker: bool,
pub system_order_type: Option<String>,
}Fields§
§trade_id: Option<i64>§client_id: Option<String>§order_id: String§symbol: String§fee_symbol: String§price: Decimal§quantity: Decimal§fee: Decimal§side: Side§timestamp: String§is_maker: bool§system_order_type: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Fill
impl<'de> Deserialize<'de> for Fill
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Fill
impl RefUnwindSafe for Fill
impl Send for Fill
impl Sync for Fill
impl Unpin for Fill
impl UnwindSafe for Fill
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