pub struct LinearRegression {
pub line: Vec<Option<f64>>,
pub slope: Vec<Option<f64>>,
pub angle: Vec<Option<f64>>,
pub intercept: Vec<Option<f64>>,
pub tsf: Vec<Option<f64>>,
}Fields§
§line: Vec<Option<f64>>§slope: Vec<Option<f64>>§angle: Vec<Option<f64>>§intercept: Vec<Option<f64>>§tsf: Vec<Option<f64>>Trait Implementations§
Source§impl Clone for LinearRegression
impl Clone for LinearRegression
Source§fn clone(&self) -> LinearRegression
fn clone(&self) -> LinearRegression
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 LinearRegression
impl RefUnwindSafe for LinearRegression
impl Send for LinearRegression
impl Sync for LinearRegression
impl Unpin for LinearRegression
impl UnsafeUnpin for LinearRegression
impl UnwindSafe for LinearRegression
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