Struct gapi_grpc::google::cloud::bigquery::v2::model::training_run::iteration_result::ArimaResult[][src]

pub struct ArimaResult {
    pub arima_model_info: Vec<ArimaModelInfo>,
    pub seasonal_periods: Vec<i32>,
}

(Auto-)arima fitting result. Wrap everything in ArimaResult for easier refactoring if we want to use model-specific iteration results.

Fields

arima_model_info: Vec<ArimaModelInfo>

This message is repeated because there are multiple arima models fitted in auto-arima. For non-auto-arima model, its size is one.

seasonal_periods: Vec<i32>

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

Implementations

impl ArimaResult[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 ArimaResult[src]

impl Debug for ArimaResult[src]

impl Default for ArimaResult[src]

impl Message for ArimaResult[src]

impl PartialEq<ArimaResult> for ArimaResult[src]

impl StructuralPartialEq for ArimaResult[src]

Auto Trait Implementations

impl RefUnwindSafe for ArimaResult

impl Send for ArimaResult

impl Sync for ArimaResult

impl Unpin for ArimaResult

impl UnwindSafe for ArimaResult

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]