pub struct EventMiniTicker24 {
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 EventMiniTicker24
impl Debug for EventMiniTicker24
Source§impl<'de> Deserialize<'de> for EventMiniTicker24
impl<'de> Deserialize<'de> for EventMiniTicker24
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 EventMiniTicker24
impl PartialEq for EventMiniTicker24
impl StructuralPartialEq for EventMiniTicker24
Auto Trait Implementations§
impl Freeze for EventMiniTicker24
impl RefUnwindSafe for EventMiniTicker24
impl Send for EventMiniTicker24
impl Sync for EventMiniTicker24
impl Unpin for EventMiniTicker24
impl UnwindSafe for EventMiniTicker24
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