pub struct BookSnapshotMessage {
pub feed: String,
pub product_id: String,
pub seq: Option<u64>,
pub timestamp: Option<u64>,
pub bids: Vec<BookLevel>,
pub asks: Vec<BookLevel>,
}Expand description
Order book snapshot message.
Fields§
§feed: StringFeed name.
product_id: StringProduct ID.
seq: Option<u64>Sequence number.
timestamp: Option<u64>Timestamp in milliseconds.
bids: Vec<BookLevel>Bids (price levels).
asks: Vec<BookLevel>Asks (price levels).
Trait Implementations§
Source§impl Clone for BookSnapshotMessage
impl Clone for BookSnapshotMessage
Source§fn clone(&self) -> BookSnapshotMessage
fn clone(&self) -> BookSnapshotMessage
Returns a duplicate of the value. Read more
1.0.0 · 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 BookSnapshotMessage
impl Debug for BookSnapshotMessage
Source§impl<'de> Deserialize<'de> for BookSnapshotMessage
impl<'de> Deserialize<'de> for BookSnapshotMessage
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 BookSnapshotMessage
impl RefUnwindSafe for BookSnapshotMessage
impl Send for BookSnapshotMessage
impl Sync for BookSnapshotMessage
impl Unpin for BookSnapshotMessage
impl UnwindSafe for BookSnapshotMessage
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