pub struct LatestCryptoQuotesResponse {
pub quotes: HashMap<String, CryptoQuote>,
}Expand description
Response for latest crypto quotes (multi-symbol).
Fields§
§quotes: HashMap<String, CryptoQuote>Map of symbol to latest quote.
Trait Implementations§
Source§impl Debug for LatestCryptoQuotesResponse
impl Debug for LatestCryptoQuotesResponse
Source§impl<'de> Deserialize<'de> for LatestCryptoQuotesResponse
impl<'de> Deserialize<'de> for LatestCryptoQuotesResponse
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 LatestCryptoQuotesResponse
impl RefUnwindSafe for LatestCryptoQuotesResponse
impl Send for LatestCryptoQuotesResponse
impl Sync for LatestCryptoQuotesResponse
impl Unpin for LatestCryptoQuotesResponse
impl UnwindSafe for LatestCryptoQuotesResponse
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