pub struct FillEvent {
pub order_id: String,
pub market_slug: String,
pub side: String,
pub price: f64,
pub size: f64,
pub timestamp: f64,
pub fill_id: String,
}Expand description
A fill (matched trade) notification.
Fields§
§order_id: String§market_slug: String§side: String§price: f64§size: f64§timestamp: f64§fill_id: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for FillEvent
impl<'de> Deserialize<'de> for FillEvent
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 FillEvent
impl RefUnwindSafe for FillEvent
impl Send for FillEvent
impl Sync for FillEvent
impl Unpin for FillEvent
impl UnsafeUnpin for FillEvent
impl UnwindSafe for FillEvent
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