pub struct Report {
pub subject: String,
pub version_pin: Option<String>,
pub run_timestamp: String,
pub judge_model: String,
pub tuning: BatteryReport,
pub holdout: BatteryReport,
pub cells: Vec<CellReport>,
}Fields§
§subject: String§version_pin: Option<String>§run_timestamp: String§judge_model: String§tuning: BatteryReport§holdout: BatteryReport§cells: Vec<CellReport>Per-(task, model) breakdown, flattened for easy table rendering.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Report
impl<'de> Deserialize<'de> for Report
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
Auto Trait Implementations§
impl Freeze for Report
impl RefUnwindSafe for Report
impl Send for Report
impl Sync for Report
impl Unpin for Report
impl UnsafeUnpin for Report
impl UnwindSafe for Report
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