[][src]Struct google_bigquery2::ArimaModelInfo

pub struct ArimaModelInfo {
    pub arima_fitting_metrics: Option<ArimaFittingMetrics>,
    pub seasonal_periods: Option<Vec<String>>,
    pub has_drift: Option<bool>,
    pub time_series_id: Option<String>,
    pub arima_coefficients: Option<ArimaCoefficients>,
    pub non_seasonal_order: Option<ArimaOrder>,
}

Arima model information.

This type is not used in any activity, and only used as part of another schema.

Fields

arima_fitting_metrics: Option<ArimaFittingMetrics>

Arima fitting metrics.

seasonal_periods: Option<Vec<String>>

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

has_drift: Option<bool>

Whether Arima model fitted with drift or not. It is always false when d is not 1.

time_series_id: Option<String>

The id to indicate different time series.

arima_coefficients: Option<ArimaCoefficients>

Arima coefficients.

non_seasonal_order: Option<ArimaOrder>

Non-seasonal order.

Trait Implementations

impl Clone for ArimaModelInfo[src]

impl Debug for ArimaModelInfo[src]

impl Default for ArimaModelInfo[src]

impl<'de> Deserialize<'de> for ArimaModelInfo[src]

impl Part for ArimaModelInfo[src]

impl Serialize for ArimaModelInfo[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T, U> Into<U> for T where
    U: From<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<T> Typeable for T where
    T: Any