pub struct MiniTicker24Msg {
pub event_time: Timestamp,
pub symbol: String,
pub open_price: Decimal,
pub close_price: Decimal,
pub high_price: Decimal,
pub low_price: Decimal,
pub total_base_asset_volume: Decimal,
pub total_quote_asset_volume: Decimal,
}Expand description
24hr rolling window mini-ticker statistics. These are NOT the statistics of the UTC day, but a 24hr rolling window for the previous 24hrs.
Fields§
§event_time: TimestampEvent time
symbol: StringSymbol
open_price: DecimalOpen price
close_price: DecimalClose price
high_price: DecimalHigh price
low_price: DecimalLow price
total_base_asset_volume: DecimalTotal traded base asset volume
total_quote_asset_volume: DecimalTotal traded quote asset volume
Trait Implementations§
Source§impl Debug for MiniTicker24Msg
impl Debug for MiniTicker24Msg
Source§impl<'de> Deserialize<'de> for MiniTicker24Msg
impl<'de> Deserialize<'de> for MiniTicker24Msg
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 MiniTicker24Msg
impl PartialEq for MiniTicker24Msg
Source§fn eq(&self, other: &MiniTicker24Msg) -> bool
fn eq(&self, other: &MiniTicker24Msg) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MiniTicker24Msg
Auto Trait Implementations§
impl Freeze for MiniTicker24Msg
impl RefUnwindSafe for MiniTicker24Msg
impl Send for MiniTicker24Msg
impl Sync for MiniTicker24Msg
impl Unpin for MiniTicker24Msg
impl UnsafeUnpin for MiniTicker24Msg
impl UnwindSafe for MiniTicker24Msg
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