pub struct CellReport {
pub section: Section,
pub task_id: String,
pub model: String,
pub n: usize,
pub mean_score: f64,
pub score_stddev: f64,
pub mean_tokens: f64,
pub mean_turns: f64,
pub invented_commands: Vec<String>,
pub fallback_count: usize,
pub mean_irr_delta: Option<f64>,
}Fields§
§section: Section§task_id: String§model: String§n: usize§mean_score: f64§score_stddev: f64§mean_tokens: f64§mean_turns: f64§invented_commands: Vec<String>§fallback_count: usize§mean_irr_delta: Option<f64>Trait Implementations§
Source§impl Clone for CellReport
impl Clone for CellReport
Source§fn clone(&self) -> CellReport
fn clone(&self) -> CellReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CellReport
impl Debug for CellReport
Source§impl<'de> Deserialize<'de> for CellReport
impl<'de> Deserialize<'de> for CellReport
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 CellReport
impl RefUnwindSafe for CellReport
impl Send for CellReport
impl Sync for CellReport
impl Unpin for CellReport
impl UnsafeUnpin for CellReport
impl UnwindSafe for CellReport
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