pub struct TickerSpot {Show 13 fields
pub symbol: Option<String>,
pub bid1_price: Option<String>,
pub bid1_size: Option<String>,
pub ask1_price: Option<String>,
pub ask1_size: Option<String>,
pub last_price: Option<String>,
pub prev_price_24h: Option<String>,
pub price_24h_pcnt: Option<String>,
pub high_price_24h: Option<String>,
pub low_price_24h: Option<String>,
pub turnover_24h: Option<String>,
pub volume_24h: Option<String>,
pub usd_index_price: Option<String>,
}Fields§
§symbol: Option<String>§bid1_price: Option<String>§bid1_size: Option<String>§ask1_price: Option<String>§ask1_size: Option<String>§last_price: Option<String>§prev_price_24h: Option<String>§price_24h_pcnt: Option<String>§high_price_24h: Option<String>§low_price_24h: Option<String>§turnover_24h: Option<String>§volume_24h: Option<String>§usd_index_price: Option<String>Trait Implementations§
Source§impl Clone for TickerSpot
impl Clone for TickerSpot
Source§fn clone(&self) -> TickerSpot
fn clone(&self) -> TickerSpot
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TickerSpot
impl Debug for TickerSpot
Source§impl<'de> Deserialize<'de> for TickerSpot
impl<'de> Deserialize<'de> for TickerSpot
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
Auto Trait Implementations§
impl Freeze for TickerSpot
impl RefUnwindSafe for TickerSpot
impl Send for TickerSpot
impl Sync for TickerSpot
impl Unpin for TickerSpot
impl UnsafeUnpin for TickerSpot
impl UnwindSafe for TickerSpot
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