#[non_exhaustive]pub struct TimeBasedForecastProperties { /* private fields */ }Expand description
The forecast properties setup of a forecast in the line chart.
Implementations§
source§impl TimeBasedForecastProperties
impl TimeBasedForecastProperties
sourcepub fn periods_forward(&self) -> Option<i32>
pub fn periods_forward(&self) -> Option<i32>
The periods forward setup of a forecast computation.
sourcepub fn periods_backward(&self) -> Option<i32>
pub fn periods_backward(&self) -> Option<i32>
The periods backward setup of a forecast computation.
sourcepub fn upper_boundary(&self) -> Option<f64>
pub fn upper_boundary(&self) -> Option<f64>
The upper boundary setup of a forecast computation.
sourcepub fn lower_boundary(&self) -> Option<f64>
pub fn lower_boundary(&self) -> Option<f64>
The lower boundary setup of a forecast computation.
sourcepub fn prediction_interval(&self) -> Option<i32>
pub fn prediction_interval(&self) -> Option<i32>
The prediction interval setup of a forecast computation.
sourcepub fn seasonality(&self) -> Option<i32>
pub fn seasonality(&self) -> Option<i32>
The seasonality setup of a forecast computation. Choose one of the following options:
-
NULL: The input is set toNULL. -
NON_NULL: The input is set to a custom value.
source§impl TimeBasedForecastProperties
impl TimeBasedForecastProperties
sourcepub fn builder() -> TimeBasedForecastPropertiesBuilder
pub fn builder() -> TimeBasedForecastPropertiesBuilder
Creates a new builder-style object to manufacture TimeBasedForecastProperties.
Trait Implementations§
source§impl Clone for TimeBasedForecastProperties
impl Clone for TimeBasedForecastProperties
source§fn clone(&self) -> TimeBasedForecastProperties
fn clone(&self) -> TimeBasedForecastProperties
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 moresource§impl Debug for TimeBasedForecastProperties
impl Debug for TimeBasedForecastProperties
source§impl PartialEq<TimeBasedForecastProperties> for TimeBasedForecastProperties
impl PartialEq<TimeBasedForecastProperties> for TimeBasedForecastProperties
source§fn eq(&self, other: &TimeBasedForecastProperties) -> bool
fn eq(&self, other: &TimeBasedForecastProperties) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for TimeBasedForecastProperties
Auto Trait Implementations§
impl RefUnwindSafe for TimeBasedForecastProperties
impl Send for TimeBasedForecastProperties
impl Sync for TimeBasedForecastProperties
impl Unpin for TimeBasedForecastProperties
impl UnwindSafe for TimeBasedForecastProperties
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