[][src]Struct google_bigquery2::ModelDefinition

pub struct ModelDefinition {
    pub training_runs: Option<Vec<BqmlTrainingRun>>,
    pub model_options: Option<ModelDefinitionModelOptions>,
}

There is no detailed description.

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

Fields

training_runs: Option<Vec<BqmlTrainingRun>>

[Output-only, Beta] Information about ml training runs, each training run comprises of multiple iterations and there may be multiple training runs for the model if warm start is used or if a user decides to continue a previously cancelled query.

model_options: Option<ModelDefinitionModelOptions>

[Output-only, Beta] Model options used for the first training run. These options are immutable for subsequent training runs. Default values are used for any options not specified in the input query.

Trait Implementations

impl Clone for ModelDefinition[src]

impl Debug for ModelDefinition[src]

impl Default for ModelDefinition[src]

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

impl Part for ModelDefinition[src]

impl Serialize for ModelDefinition[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