pub struct Ticker {
pub id: String,
pub name: String,
pub symbol: String,
pub rank: isize,
pub circulating_supply: i64,
pub total_supply: i64,
pub max_supply: i64,
pub beta_value: f64,
pub first_data_at: String,
pub last_updated: String,
pub quotes: Value,
}Expand description
Price data of a single cryptocurrency on coinpaprika.com
Fields§
§id: String§name: String§symbol: String§rank: isize§circulating_supply: i64§total_supply: i64§max_supply: i64§beta_value: f64§first_data_at: String§last_updated: String§quotes: ValueTrait Implementations§
Source§impl<'de> Deserialize<'de> for Ticker
impl<'de> Deserialize<'de> for Ticker
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 Ticker
impl RefUnwindSafe for Ticker
impl Send for Ticker
impl Sync for Ticker
impl Unpin for Ticker
impl UnwindSafe for Ticker
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