pub struct TickerPriceChangeStatisticFull {Show 21 fields
pub symbol: String,
pub price_change: Decimal,
pub price_change_percent: Decimal,
pub weighted_avg_price: Decimal,
pub prev_close_price: Decimal,
pub last_price: Decimal,
pub last_qty: Decimal,
pub bid_price: Decimal,
pub bid_qty: Decimal,
pub ask_price: Decimal,
pub ask_qty: Decimal,
pub open_price: Decimal,
pub high_price: Decimal,
pub low_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: String§price_change: Decimal§price_change_percent: Decimal§weighted_avg_price: Decimal§prev_close_price: Decimal§last_price: Decimal§last_qty: Decimal§bid_price: Decimal§bid_qty: Decimal§ask_price: Decimal§ask_qty: Decimal§open_price: Decimal§high_price: Decimal§low_price: Decimal§volume: Decimal§quote_volume: Decimal§open_time: Timestamp§close_time: Timestamp§first_id: i64First traded
last_id: i64Last traded
count: u64Trade count
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TickerPriceChangeStatisticFull
impl<'de> Deserialize<'de> for TickerPriceChangeStatisticFull
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 TickerPriceChangeStatisticFull
impl PartialEq for TickerPriceChangeStatisticFull
Source§fn eq(&self, other: &TickerPriceChangeStatisticFull) -> bool
fn eq(&self, other: &TickerPriceChangeStatisticFull) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TickerPriceChangeStatisticFull
Auto Trait Implementations§
impl Freeze for TickerPriceChangeStatisticFull
impl RefUnwindSafe for TickerPriceChangeStatisticFull
impl Send for TickerPriceChangeStatisticFull
impl Sync for TickerPriceChangeStatisticFull
impl Unpin for TickerPriceChangeStatisticFull
impl UnwindSafe for TickerPriceChangeStatisticFull
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