[][src]Struct rusoto_forecast::PredictorExecutionDetails

pub struct PredictorExecutionDetails {
    pub predictor_executions: Option<Vec<PredictorExecution>>,
}

Contains details on the backtests performed to evaluate the accuracy of the predictor. The tests are returned in descending order of accuracy, with the most accurate backtest appearing first. You specify the number of backtests to perform when you call the operation.

Fields

predictor_executions: Option<Vec<PredictorExecution>>

An array of the backtests performed to evaluate the accuracy of the predictor against a particular algorithm. The NumberOfBacktestWindows from the object determines the number of windows in the array.

Trait Implementations

impl Clone for PredictorExecutionDetails[src]

impl Debug for PredictorExecutionDetails[src]

impl Default for PredictorExecutionDetails[src]

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

impl PartialEq<PredictorExecutionDetails> for PredictorExecutionDetails[src]

impl StructuralPartialEq for PredictorExecutionDetails[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> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

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.