pub struct FinalAutoMLJobObjectiveMetric {
pub metric_name: String,
pub type_: Option<String>,
pub value: f32,
}
Expand description
The candidate result from a job.
Fields§
§metric_name: String
The name of the metric.
type_: Option<String>
The metric type used.
value: f32
The value of the metric.
Trait Implementations§
Source§impl Clone for FinalAutoMLJobObjectiveMetric
impl Clone for FinalAutoMLJobObjectiveMetric
Source§fn clone(&self) -> FinalAutoMLJobObjectiveMetric
fn clone(&self) -> FinalAutoMLJobObjectiveMetric
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for FinalAutoMLJobObjectiveMetric
impl Default for FinalAutoMLJobObjectiveMetric
Source§fn default() -> FinalAutoMLJobObjectiveMetric
fn default() -> FinalAutoMLJobObjectiveMetric
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FinalAutoMLJobObjectiveMetric
impl<'de> Deserialize<'de> for FinalAutoMLJobObjectiveMetric
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for FinalAutoMLJobObjectiveMetric
impl PartialEq for FinalAutoMLJobObjectiveMetric
Source§fn eq(&self, other: &FinalAutoMLJobObjectiveMetric) -> bool
fn eq(&self, other: &FinalAutoMLJobObjectiveMetric) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for FinalAutoMLJobObjectiveMetric
Auto Trait Implementations§
impl Freeze for FinalAutoMLJobObjectiveMetric
impl RefUnwindSafe for FinalAutoMLJobObjectiveMetric
impl Send for FinalAutoMLJobObjectiveMetric
impl Sync for FinalAutoMLJobObjectiveMetric
impl Unpin for FinalAutoMLJobObjectiveMetric
impl UnwindSafe for FinalAutoMLJobObjectiveMetric
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more