pub struct YahooBar {
pub timestamp: i64,
pub open: Decimal,
pub high: Decimal,
pub low: Decimal,
pub close: Decimal,
pub volume: i64,
}Fields§
§timestamp: i64§open: Decimal§high: Decimal§low: Decimal§close: Decimal§volume: i64Trait Implementations§
Source§impl<'de> Deserialize<'de> for YahooBar
impl<'de> Deserialize<'de> for YahooBar
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 YahooBar
impl RefUnwindSafe for YahooBar
impl Send for YahooBar
impl Sync for YahooBar
impl Unpin for YahooBar
impl UnwindSafe for YahooBar
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