pub enum Seasonality {
Additive,
Multiplicative,
}Expand description
Seasonality type.
Variants§
Additive
Additive: seasonal effect is added to the trend.
Multiplicative
Multiplicative: seasonal effect multiplies the trend.
Trait Implementations§
Source§impl Clone for Seasonality
impl Clone for Seasonality
Source§fn clone(&self) -> Seasonality
fn clone(&self) -> Seasonality
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 Seasonality
impl Debug for Seasonality
Source§impl PartialEq for Seasonality
impl PartialEq for Seasonality
impl Copy for Seasonality
impl StructuralPartialEq for Seasonality
Auto Trait Implementations§
impl Freeze for Seasonality
impl RefUnwindSafe for Seasonality
impl Send for Seasonality
impl Sync for Seasonality
impl Unpin for Seasonality
impl UnwindSafe for Seasonality
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