pub struct TickerPriceChangeStatisticMini {
pub symbol: String,
pub open_price: Decimal,
pub high_price: Decimal,
pub low_price: Decimal,
pub last_price: Decimal,
pub volume: Decimal,
pub quote_volume: Decimal,
pub open_time: Timestamp,
pub close_time: Timestamp,
pub first_id: i64,
pub last_id: i64,
pub count: u64,
}Fields§
§symbol: StringSymbol Name
open_price: DecimalOpening price of the Interval
high_price: DecimalHighest price in the interval
low_price: DecimalLowest price in the interval
last_price: DecimalClosing price of the interval
volume: DecimalTotal trade volume (in base asset)
quote_volume: DecimalTotal trade volume (in quote asset)
open_time: TimestampStart of the ticker interval
close_time: TimestampEnd of the ticker interval
first_id: i64First tradeId considered
last_id: i64Last tradeId considered
count: u64Total trade count
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TickerPriceChangeStatisticMini
impl<'de> Deserialize<'de> for TickerPriceChangeStatisticMini
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 TickerPriceChangeStatisticMini
impl PartialEq for TickerPriceChangeStatisticMini
Source§fn eq(&self, other: &TickerPriceChangeStatisticMini) -> bool
fn eq(&self, other: &TickerPriceChangeStatisticMini) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TickerPriceChangeStatisticMini
Auto Trait Implementations§
impl Freeze for TickerPriceChangeStatisticMini
impl RefUnwindSafe for TickerPriceChangeStatisticMini
impl Send for TickerPriceChangeStatisticMini
impl Sync for TickerPriceChangeStatisticMini
impl Unpin for TickerPriceChangeStatisticMini
impl UnwindSafe for TickerPriceChangeStatisticMini
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