pub struct Report {
pub objective: String,
pub goal: String,
pub metric_name: String,
pub start_value: Option<f64>,
pub best_value: Option<f64>,
pub best_round: Option<u32>,
pub rounds: Vec<RoundRecord>,
pub usage: Usage,
}Fields§
§objective: String§goal: String§metric_name: String§start_value: Option<f64>§best_value: Option<f64>§best_round: Option<u32>§rounds: Vec<RoundRecord>§usage: UsageToken usage summed across every model call the run made.
Implementations§
Trait Implementations§
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