pub struct MultiQuotesResponse {
pub quotes: HashMap<String, Vec<Quote>>,
pub next_page_token: Option<String>,
}Expand description
Response for multi-symbol quotes.
Fields§
§quotes: HashMap<String, Vec<Quote>>Map of symbol to quotes.
next_page_token: Option<String>Token for next page of results.
Trait Implementations§
Source§impl Debug for MultiQuotesResponse
impl Debug for MultiQuotesResponse
Source§impl<'de> Deserialize<'de> for MultiQuotesResponse
impl<'de> Deserialize<'de> for MultiQuotesResponse
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 MultiQuotesResponse
impl RefUnwindSafe for MultiQuotesResponse
impl Send for MultiQuotesResponse
impl Sync for MultiQuotesResponse
impl Unpin for MultiQuotesResponse
impl UnwindSafe for MultiQuotesResponse
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