pub struct NaiveTrend { /* private fields */ }
Expand description
A naive trend model that predicts the last value in the training set for all future time points.
Implementations§
Source§impl NaiveTrend
impl NaiveTrend
Trait Implementations§
Source§impl Clone for NaiveTrend
impl Clone for NaiveTrend
Source§fn clone(&self) -> NaiveTrend
fn clone(&self) -> NaiveTrend
Returns a duplicate 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 moreSource§impl Debug for NaiveTrend
impl Debug for NaiveTrend
Source§impl Default for NaiveTrend
impl Default for NaiveTrend
Source§fn default() -> NaiveTrend
fn default() -> NaiveTrend
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for NaiveTrend
impl RefUnwindSafe for NaiveTrend
impl Send for NaiveTrend
impl Sync for NaiveTrend
impl Unpin for NaiveTrend
impl UnwindSafe for NaiveTrend
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