pub enum TickByTick {
Last(HistoricalTickLast),
BidAsk(HistoricalTickBidAsk),
MidPoint(HistoricalTick),
}Expand description
Tick-by-tick payload.
Variants§
Last(HistoricalTickLast)
Last trade tick.
BidAsk(HistoricalTickBidAsk)
Bid/ask tick.
MidPoint(HistoricalTick)
Midpoint tick.
Trait Implementations§
Source§impl Clone for TickByTick
impl Clone for TickByTick
Source§fn clone(&self) -> TickByTick
fn clone(&self) -> TickByTick
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 TickByTick
impl Debug for TickByTick
Source§impl PartialEq for TickByTick
impl PartialEq for TickByTick
impl StructuralPartialEq for TickByTick
Auto Trait Implementations§
impl Freeze for TickByTick
impl RefUnwindSafe for TickByTick
impl Send for TickByTick
impl Sync for TickByTick
impl Unpin for TickByTick
impl UnsafeUnpin for TickByTick
impl UnwindSafe for TickByTick
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