Struct regressionu::RegressionData
source · pub struct RegressionData {Show 16 fields
pub price: f64,
pub price_small: f64,
pub begin_timestamp: f64,
pub timestamp: f64,
pub timestamp_small: f64,
pub time_value: f64,
pub time_square: f64,
pub sum_price_small: f64,
pub sum_time: f64,
pub sum_time_value: f64,
pub sum_time_square: f64,
pub regression_a: f64,
pub regression_b: f64,
pub regression_value: f64,
pub regression_a_abs: f64,
pub regression_b_half: f64,
}Fields§
§price: f64§price_small: f64§begin_timestamp: f64§timestamp: f64§timestamp_small: f64§time_value: f64§time_square: f64§sum_price_small: f64§sum_time: f64§sum_time_value: f64§sum_time_square: f64§regression_a: f64§regression_b: f64§regression_value: f64§regression_a_abs: f64§regression_b_half: f64Trait Implementations§
source§impl Clone for RegressionData
impl Clone for RegressionData
source§fn clone(&self) -> RegressionData
fn clone(&self) -> RegressionData
Returns a copy of the value. Read more
1.0.0 · 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 RegressionData
impl RefUnwindSafe for RegressionData
impl Send for RegressionData
impl Sync for RegressionData
impl Unpin for RegressionData
impl UnwindSafe for RegressionData
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