pub enum TickerPriceChangeStatistic {
MiniElement(TickerPriceChangeStatisticMini),
MiniList(Vec<TickerPriceChangeStatisticMini>),
FullElement(TickerPriceChangeStatisticFull),
FullList(Vec<TickerPriceChangeStatisticFull>),
}Variants§
MiniElement(TickerPriceChangeStatisticMini)
MiniList(Vec<TickerPriceChangeStatisticMini>)
FullElement(TickerPriceChangeStatisticFull)
FullList(Vec<TickerPriceChangeStatisticFull>)
Trait Implementations§
Source§impl Debug for TickerPriceChangeStatistic
impl Debug for TickerPriceChangeStatistic
Source§impl<'de> Deserialize<'de> for TickerPriceChangeStatistic
impl<'de> Deserialize<'de> for TickerPriceChangeStatistic
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 TickerPriceChangeStatistic
impl PartialEq for TickerPriceChangeStatistic
Source§fn eq(&self, other: &TickerPriceChangeStatistic) -> bool
fn eq(&self, other: &TickerPriceChangeStatistic) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TickerPriceChangeStatistic
Auto Trait Implementations§
impl Freeze for TickerPriceChangeStatistic
impl RefUnwindSafe for TickerPriceChangeStatistic
impl Send for TickerPriceChangeStatistic
impl Sync for TickerPriceChangeStatistic
impl Unpin for TickerPriceChangeStatistic
impl UnsafeUnpin for TickerPriceChangeStatistic
impl UnwindSafe for TickerPriceChangeStatistic
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