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