[][src]Struct google_prediction1d6::Insert

pub struct Insert {
    pub storage_data_location: Option<String>,
    pub model_type: Option<String>,
    pub storage_pmml_model_location: Option<String>,
    pub source_model: Option<String>,
    pub storage_pmml_location: Option<String>,
    pub training_instances: Option<Vec<InsertTrainingInstances>>,
    pub id: Option<String>,
    pub utility: Option<Vec<HashMap<String, f64>>>,
}

There is no detailed description.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

storage_data_location: Option<String>

Google storage location of the training data file.

model_type: Option<String>

Type of predictive model (classification or regression).

storage_pmml_model_location: Option<String>

Google storage location of the pmml model file.

source_model: Option<String>

The Id of the model to be copied over.

storage_pmml_location: Option<String>

Google storage location of the preprocessing pmml file.

training_instances: Option<Vec<InsertTrainingInstances>>

Instances to train model on.

id: Option<String>

The unique name for the predictive model.

utility: Option<Vec<HashMap<String, f64>>>

A class weighting function, which allows the importance weights for class labels to be specified (Categorical models only).

Trait Implementations

impl RequestValue for Insert[src]

impl Default for Insert[src]

impl Clone for Insert[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Insert[src]

impl Serialize for Insert[src]

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

Auto Trait Implementations

impl Send for Insert

impl Unpin for Insert

impl Sync for Insert

impl UnwindSafe for Insert

impl RefUnwindSafe for Insert

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> 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.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]