logo
pub struct AutoMLCandidate {
    pub candidate_name: String,
    pub candidate_properties: Option<CandidateProperties>,
    pub candidate_status: String,
    pub candidate_steps: Vec<AutoMLCandidateStep>,
    pub creation_time: f64,
    pub end_time: Option<f64>,
    pub failure_reason: Option<String>,
    pub final_auto_ml_job_objective_metric: Option<FinalAutoMLJobObjectiveMetric>,
    pub inference_containers: Option<Vec<AutoMLContainerDefinition>>,
    pub last_modified_time: f64,
    pub objective_status: String,
}
Expand description

An Autopilot job returns recommendations, or candidates. Each candidate has futher details about the steps involved and the status.

Fields

candidate_name: String

The name of the candidate.

candidate_properties: Option<CandidateProperties>

The AutoML candidate's properties.

candidate_status: String

The candidate's status.

candidate_steps: Vec<AutoMLCandidateStep>

Information about the candidate's steps.

creation_time: f64

The creation time.

end_time: Option<f64>

The end time.

failure_reason: Option<String>

The failure reason.

final_auto_ml_job_objective_metric: Option<FinalAutoMLJobObjectiveMetric>inference_containers: Option<Vec<AutoMLContainerDefinition>>

Information about the inference container definitions.

last_modified_time: f64

The last modified time.

objective_status: String

The objective's status.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more