pub struct FillMsg {
pub trade_id: String,
pub order_id: String,
pub market_ticker: String,
pub side: Side,
pub action: Action,
pub count: i32,
pub post_position: i32,
}Fields§
§trade_id: String§order_id: String§market_ticker: String§side: Side§action: Action§count: i32§post_position: i32Trait Implementations§
Source§impl<'de> Deserialize<'de> for FillMsg
impl<'de> Deserialize<'de> for FillMsg
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 FillMsg
impl RefUnwindSafe for FillMsg
impl Send for FillMsg
impl Sync for FillMsg
impl Unpin for FillMsg
impl UnwindSafe for FillMsg
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