pub enum StreamDataEvent {
OrderSnapshot(Value),
MarketDataLite(Value),
OrderBookDelta(Value),
OrderUpdate(Value),
Other {
event_type: String,
payload: Value,
},
}Variants§
Trait Implementations§
Source§impl Clone for StreamDataEvent
impl Clone for StreamDataEvent
Source§fn clone(&self) -> StreamDataEvent
fn clone(&self) -> StreamDataEvent
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 moreAuto Trait Implementations§
impl Freeze for StreamDataEvent
impl RefUnwindSafe for StreamDataEvent
impl Send for StreamDataEvent
impl Sync for StreamDataEvent
impl Unpin for StreamDataEvent
impl UnsafeUnpin for StreamDataEvent
impl UnwindSafe for StreamDataEvent
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