pub struct ScoreSet {
pub schema_version: u32,
pub plan_id: String,
pub selection_metric: Option<String>,
pub reports: Vec<RegressionMetricReport>,
}Fields§
§schema_version: u32§plan_id: String§selection_metric: Option<String>The metric SELECT optimized for this run (e.g. "rmse"), if a selection ran. Metadata only.
reports: Vec<RegressionMetricReport>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ScoreSet
impl<'de> Deserialize<'de> for ScoreSet
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
impl StructuralPartialEq for ScoreSet
Auto Trait Implementations§
impl Freeze for ScoreSet
impl RefUnwindSafe for ScoreSet
impl Send for ScoreSet
impl Sync for ScoreSet
impl Unpin for ScoreSet
impl UnsafeUnpin for ScoreSet
impl UnwindSafe for ScoreSet
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