pub struct ModelBenchmarkPriorHealth {
pub model_id: String,
pub model_name: Option<String>,
pub overall_score: f64,
pub overall_latency_ms: Option<f64>,
pub task_scores: HashMap<String, f64>,
pub task_latency_ms: HashMap<String, f64>,
pub source_path: PathBuf,
}Fields§
§model_id: String§model_name: Option<String>§overall_score: f64§overall_latency_ms: Option<f64>§task_scores: HashMap<String, f64>§task_latency_ms: HashMap<String, f64>§source_path: PathBufTrait Implementations§
Source§impl Clone for ModelBenchmarkPriorHealth
impl Clone for ModelBenchmarkPriorHealth
Source§impl Debug for ModelBenchmarkPriorHealth
impl Debug for ModelBenchmarkPriorHealth
Auto Trait Implementations§
impl Freeze for ModelBenchmarkPriorHealth
impl RefUnwindSafe for ModelBenchmarkPriorHealth
impl Send for ModelBenchmarkPriorHealth
impl Sync for ModelBenchmarkPriorHealth
impl Unpin for ModelBenchmarkPriorHealth
impl UnsafeUnpin for ModelBenchmarkPriorHealth
impl UnwindSafe for ModelBenchmarkPriorHealth
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more