pub struct L3OrderbookUpdate {
pub symbol: String,
pub bids: Vec<L3BidAskUpdate>,
pub asks: Vec<L3BidAskUpdate>,
pub checksum: u32,
}
Fields§
§symbol: String
§bids: Vec<L3BidAskUpdate>
§asks: Vec<L3BidAskUpdate>
§checksum: u32
Trait Implementations§
Source§impl Debug for L3OrderbookUpdate
impl Debug for L3OrderbookUpdate
Source§impl<'de> Deserialize<'de> for L3OrderbookUpdate
impl<'de> Deserialize<'de> for L3OrderbookUpdate
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
Source§impl PartialEq for L3OrderbookUpdate
impl PartialEq for L3OrderbookUpdate
impl StructuralPartialEq for L3OrderbookUpdate
Auto Trait Implementations§
impl Freeze for L3OrderbookUpdate
impl RefUnwindSafe for L3OrderbookUpdate
impl Send for L3OrderbookUpdate
impl Sync for L3OrderbookUpdate
impl Unpin for L3OrderbookUpdate
impl UnwindSafe for L3OrderbookUpdate
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