pub struct EvalTrialSummary {
pub requested_trials: u32,
pub issued_trials: u32,
pub unissued_trials: u32,
pub completed_trials: u32,
pub request_failure_trials: u32,
pub passed_trials: u32,
pub pass_rate: Option<f64>,
pub per_trial_metric: String,
pub per_trial_filter: Option<String>,
pub higher_is_better: bool,
}Expand description
Reconstructible aggregate counts for fixed outer Eval trials.
Fields§
§requested_trials: u32§issued_trials: u32§unissued_trials: u32§completed_trials: u32§request_failure_trials: u32§passed_trials: u32§pass_rate: Option<f64>§per_trial_metric: String§per_trial_filter: Option<String>§higher_is_better: boolTrait Implementations§
Source§impl Clone for EvalTrialSummary
impl Clone for EvalTrialSummary
Source§fn clone(&self) -> EvalTrialSummary
fn clone(&self) -> EvalTrialSummary
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 EvalTrialSummary
impl Debug for EvalTrialSummary
Source§impl<'de> Deserialize<'de> for EvalTrialSummary
impl<'de> Deserialize<'de> for EvalTrialSummary
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
Source§impl JsonSchema for EvalTrialSummary
impl JsonSchema for EvalTrialSummary
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for EvalTrialSummary
impl PartialEq for EvalTrialSummary
Source§impl Serialize for EvalTrialSummary
impl Serialize for EvalTrialSummary
impl StructuralPartialEq for EvalTrialSummary
Auto Trait Implementations§
impl Freeze for EvalTrialSummary
impl RefUnwindSafe for EvalTrialSummary
impl Send for EvalTrialSummary
impl Sync for EvalTrialSummary
impl Unpin for EvalTrialSummary
impl UnsafeUnpin for EvalTrialSummary
impl UnwindSafe for EvalTrialSummary
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