pub struct PriceContext {
pub close_vs_ath_pct: Vec<Option<f64>>,
pub close_vs_atl_pct: Vec<Option<f64>>,
pub days_since_ath: Vec<Option<f64>>,
pub days_since_atl: Vec<Option<f64>>,
}Fields§
§close_vs_ath_pct: Vec<Option<f64>>§close_vs_atl_pct: Vec<Option<f64>>§days_since_ath: Vec<Option<f64>>§days_since_atl: Vec<Option<f64>>Trait Implementations§
Source§impl Clone for PriceContext
impl Clone for PriceContext
Source§fn clone(&self) -> PriceContext
fn clone(&self) -> PriceContext
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 moreAuto Trait Implementations§
impl Freeze for PriceContext
impl RefUnwindSafe for PriceContext
impl Send for PriceContext
impl Sync for PriceContext
impl Unpin for PriceContext
impl UnsafeUnpin for PriceContext
impl UnwindSafe for PriceContext
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