Struct gcp_bigquery_client::model::arima_model_info::ArimaModelInfo[][src]

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

Fields

time_series_id: Option<String>

The time_series_id value for this time series. It will be one of the unique values from the time_series_id_column specified during ARIMA model training. Only present when time_series_id_column training option was used.

has_drift: Option<bool>

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

seasonal_periods: Option<Vec<SeasonalPeriods>>

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

arima_fitting_metrics: Option<ArimaFittingMetrics>

Arima fitting metrics.

arima_coefficients: Option<ArimaCoefficients>

Arima coefficients.

non_seasonal_order: Option<ArimaOrder>

Non-seasonal order.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more