Struct gcp_bigquery_client::model::bqml_training_run::BqmlTrainingRun[][src]

pub struct BqmlTrainingRun {
    pub iteration_results: Option<Vec<BqmlIterationResult>>,
    pub start_time: Option<String>,
    pub state: Option<String>,
    pub training_options: Option<BqmlTrainingRunTrainingOptions>,
}

Fields

iteration_results: Option<Vec<BqmlIterationResult>>

[Output-only, Beta] List of each iteration results.

start_time: Option<String>

[Output-only, Beta] Training run start time in milliseconds since the epoch.

state: Option<String>

[Output-only, Beta] Different state applicable for a training run. IN PROGRESS: Training run is in progress. FAILED: Training run ended due to a non-retryable failure. SUCCEEDED: Training run successfully completed. CANCELLED: Training run cancelled by the user.

training_options: Option<BqmlTrainingRunTrainingOptions>

Trait Implementations

impl Debug for BqmlTrainingRun[src]

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

impl Serialize for BqmlTrainingRun[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> Instrument for T[src]

impl<T> Instrument for T[src]

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

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.