pub struct TickerTrades {
pub today: i64,
pub last_24_h: i64,
}
Expand description
Ticker containing trade count data for the last 24 hours
Fields§
§today: i64
§last_24_h: i64
Trait Implementations§
Source§impl Clone for TickerTrades
impl Clone for TickerTrades
Source§fn clone(&self) -> TickerTrades
fn clone(&self) -> TickerTrades
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TickerTrades
impl Debug for TickerTrades
Source§impl<'de> Deserialize<'de> for TickerTrades
impl<'de> Deserialize<'de> for TickerTrades
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 TickerTrades
impl PartialEq for TickerTrades
impl StructuralPartialEq for TickerTrades
Auto Trait Implementations§
impl Freeze for TickerTrades
impl RefUnwindSafe for TickerTrades
impl Send for TickerTrades
impl Sync for TickerTrades
impl Unpin for TickerTrades
impl UnwindSafe for TickerTrades
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