pub struct SeasonalityPattern {
pub hourly_pattern: Vec<f32>,
pub daily_pattern: Vec<f32>,
pub weekly_pattern: Vec<f32>,
}Expand description
Seasonality patterns
Fields§
§hourly_pattern: Vec<f32>Hourly patterns
daily_pattern: Vec<f32>Daily patterns
weekly_pattern: Vec<f32>Weekly patterns
Trait Implementations§
Source§impl Clone for SeasonalityPattern
impl Clone for SeasonalityPattern
Source§fn clone(&self) -> SeasonalityPattern
fn clone(&self) -> SeasonalityPattern
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 moreAuto Trait Implementations§
impl Freeze for SeasonalityPattern
impl RefUnwindSafe for SeasonalityPattern
impl Send for SeasonalityPattern
impl Sync for SeasonalityPattern
impl Unpin for SeasonalityPattern
impl UnsafeUnpin for SeasonalityPattern
impl UnwindSafe for SeasonalityPattern
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