pub enum PositionReplayEvent {
Filled(OrderFilled),
Adjusted(PositionAdjusted),
}Variants§
Filled(OrderFilled)
Adjusted(PositionAdjusted)
Trait Implementations§
Source§impl Clone for PositionReplayEvent
impl Clone for PositionReplayEvent
Source§fn clone(&self) -> PositionReplayEvent
fn clone(&self) -> PositionReplayEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PositionReplayEvent
impl Debug for PositionReplayEvent
Source§impl<'de> Deserialize<'de> for PositionReplayEvent
impl<'de> Deserialize<'de> for PositionReplayEvent
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 PositionReplayEvent
impl RefUnwindSafe for PositionReplayEvent
impl Send for PositionReplayEvent
impl Sync for PositionReplayEvent
impl Unpin for PositionReplayEvent
impl UnsafeUnpin for PositionReplayEvent
impl UnwindSafe for PositionReplayEvent
Blanket Implementations§
impl<T> Allocation for T
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