pub struct CryptoQuotesResponse {
pub quotes: Vec<Quote>,
pub symbol: String,
pub next_page_token: Option<String>,
}Fields§
§quotes: Vec<Quote>§symbol: String§next_page_token: Option<String>Trait Implementations§
Source§impl Debug for CryptoQuotesResponse
impl Debug for CryptoQuotesResponse
Source§impl<'de> Deserialize<'de> for CryptoQuotesResponse
impl<'de> Deserialize<'de> for CryptoQuotesResponse
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 CryptoQuotesResponse
impl RefUnwindSafe for CryptoQuotesResponse
impl Send for CryptoQuotesResponse
impl Sync for CryptoQuotesResponse
impl Unpin for CryptoQuotesResponse
impl UnwindSafe for CryptoQuotesResponse
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