pub struct ExchangeMarket {
pub pair: String,
pub base_currency_id: String,
pub base_currency_name: String,
pub quote_currency_id: String,
pub quote_currency_name: String,
pub market_url: String,
pub category: String,
pub fee_type: String,
pub outlier: bool,
pub reported_volume_24h_share: f64,
pub quotes: Value,
pub last_updated: String,
}Expand description
Information about given exchange market
Fields§
§pair: String§base_currency_id: String§base_currency_name: String§quote_currency_id: String§quote_currency_name: String§market_url: String§category: String§fee_type: String§outlier: bool§quotes: Value§last_updated: StringTrait Implementations§
Source§impl Debug for ExchangeMarket
impl Debug for ExchangeMarket
Source§impl<'de> Deserialize<'de> for ExchangeMarket
impl<'de> Deserialize<'de> for ExchangeMarket
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 ExchangeMarket
impl RefUnwindSafe for ExchangeMarket
impl Send for ExchangeMarket
impl Sync for ExchangeMarket
impl Unpin for ExchangeMarket
impl UnwindSafe for ExchangeMarket
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