pub struct StreamMarketDepthAggregate {
pub symbol: Option<String>,
pub total_ask_size: Option<String>,
pub total_bid_size: Option<String>,
pub levels: Option<u32>,
pub status: Option<String>,
}Expand description
A streaming market depth aggregate summary.
Delivered via Client::stream_market_depth_aggregates.
Fields§
§symbol: Option<String>Ticker symbol.
total_ask_size: Option<String>Total ask size across all levels.
total_bid_size: Option<String>Total bid size across all levels.
levels: Option<u32>Number of price levels.
status: Option<String>Stream status (present only for status messages).
Implementations§
Trait Implementations§
Source§impl Clone for StreamMarketDepthAggregate
impl Clone for StreamMarketDepthAggregate
Source§fn clone(&self) -> StreamMarketDepthAggregate
fn clone(&self) -> StreamMarketDepthAggregate
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 StreamMarketDepthAggregate
impl Debug for StreamMarketDepthAggregate
Source§impl<'de> Deserialize<'de> for StreamMarketDepthAggregate
impl<'de> Deserialize<'de> for StreamMarketDepthAggregate
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 StreamMarketDepthAggregate
impl RefUnwindSafe for StreamMarketDepthAggregate
impl Send for StreamMarketDepthAggregate
impl Sync for StreamMarketDepthAggregate
impl Unpin for StreamMarketDepthAggregate
impl UnsafeUnpin for StreamMarketDepthAggregate
impl UnwindSafe for StreamMarketDepthAggregate
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