pub struct EvalRun {Show 15 fields
pub id: EvalRunId,
pub kind: EvalRunKind,
pub status: EvalRunStatus,
pub judge_provider: String,
pub judge_model: String,
pub sample_size: i32,
pub scored_count: i32,
pub failed_count: i32,
pub cost_microdollars: i64,
pub created_by: UserId,
pub created_at: DateTime<Utc>,
pub completed_at: Option<DateTime<Utc>>,
pub error_message: Option<String>,
pub rubric_id: Option<EvalRubricId>,
pub trigger_source: TriggerSource,
}Fields§
§id: EvalRunId§kind: EvalRunKind§status: EvalRunStatus§judge_provider: String§judge_model: String§sample_size: i32§scored_count: i32§failed_count: i32§cost_microdollars: i64§created_by: UserId§created_at: DateTime<Utc>§completed_at: Option<DateTime<Utc>>§error_message: Option<String>§rubric_id: Option<EvalRubricId>§trigger_source: TriggerSourceTrait Implementations§
Auto Trait Implementations§
impl Freeze for EvalRun
impl RefUnwindSafe for EvalRun
impl Send for EvalRun
impl Sync for EvalRun
impl Unpin for EvalRun
impl UnsafeUnpin for EvalRun
impl UnwindSafe for EvalRun
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<A, B, T> HttpServerConnExec<A, B> for Twhere
B: Body,
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