Struct gapi_grpc::google::cloud::bigquery::v2::model::arima_forecasting_metrics::ArimaSingleModelForecastingMetrics[][src]

pub struct ArimaSingleModelForecastingMetrics {
    pub non_seasonal_order: Option<ArimaOrder>,
    pub arima_fitting_metrics: Option<ArimaFittingMetrics>,
    pub has_drift: bool,
    pub time_series_id: String,
    pub seasonal_periods: Vec<i32>,
}

Model evaluation metrics for a single ARIMA forecasting model.

Fields

non_seasonal_order: Option<ArimaOrder>

Non-seasonal order.

arima_fitting_metrics: Option<ArimaFittingMetrics>

Arima fitting metrics.

has_drift: bool

Is arima model fitted with drift or not. It is always false when d is not 1.

time_series_id: String

The id to indicate different time series.

seasonal_periods: Vec<i32>

Seasonal periods. Repeated because multiple periods are supported for one time series.

Implementations

impl ArimaSingleModelForecastingMetrics[src]

pub fn seasonal_periods(
    &self
) -> FilterMap<Cloned<Iter<'_, i32>>, fn(_: i32) -> Option<SeasonalPeriodType>>
[src]

Returns an iterator which yields the valid enum values contained in seasonal_periods.

pub fn push_seasonal_periods(&mut self, value: SeasonalPeriodType)[src]

Appends the provided enum value to seasonal_periods.

Trait Implementations

impl Clone for ArimaSingleModelForecastingMetrics[src]

impl Debug for ArimaSingleModelForecastingMetrics[src]

impl Default for ArimaSingleModelForecastingMetrics[src]

impl Message for ArimaSingleModelForecastingMetrics[src]

impl PartialEq<ArimaSingleModelForecastingMetrics> for ArimaSingleModelForecastingMetrics[src]

impl StructuralPartialEq for ArimaSingleModelForecastingMetrics[src]

Auto Trait Implementations

impl RefUnwindSafe for ArimaSingleModelForecastingMetrics

impl Send for ArimaSingleModelForecastingMetrics

impl Sync for ArimaSingleModelForecastingMetrics

impl Unpin for ArimaSingleModelForecastingMetrics

impl UnwindSafe for ArimaSingleModelForecastingMetrics

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]