pub struct PreviousCloseAgg {
pub ticker: Option<String>,
pub close: Option<f64>,
pub high: Option<f64>,
pub low: Option<f64>,
pub open: Option<f64>,
pub timestamp: Option<i64>,
pub volume: Option<f64>,
pub vwap: Option<f64>,
}Expand description
Previous close aggregate data
Fields§
§ticker: Option<String>Ticker symbol
close: Option<f64>Closing price
high: Option<f64>High price
low: Option<f64>Low price
open: Option<f64>Opening price
timestamp: Option<i64>Unix timestamp (milliseconds)
volume: Option<f64>Volume
vwap: Option<f64>Volume weighted average price
Trait Implementations§
Source§impl Clone for PreviousCloseAgg
impl Clone for PreviousCloseAgg
Source§fn clone(&self) -> PreviousCloseAgg
fn clone(&self) -> PreviousCloseAgg
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PreviousCloseAgg
impl Debug for PreviousCloseAgg
impl Decodable for PreviousCloseAgg
Available on crate feature
decoder only.Auto Trait Implementations§
impl Freeze for PreviousCloseAgg
impl RefUnwindSafe for PreviousCloseAgg
impl Send for PreviousCloseAgg
impl Sync for PreviousCloseAgg
impl Unpin for PreviousCloseAgg
impl UnsafeUnpin for PreviousCloseAgg
impl UnwindSafe for PreviousCloseAgg
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