pub struct ExperimentRun {Show 20 fields
pub run_id: String,
pub utc: String,
pub git_sha: String,
pub host_passport_key: String,
pub adapter: String,
pub backend: String,
pub model_id: String,
pub model_hash: String,
pub layout: String,
pub mode: String,
pub profile: String,
pub toggles_json: String,
pub qualia_decode_tok_s: Option<f64>,
pub ollama_decode_tok_s: Option<f64>,
pub a_gap: Option<f64>,
pub prefill_tok_s: Option<f64>,
pub phase_ns_json: String,
pub n_ulp_max: Option<u64>,
pub c_score: Option<f64>,
pub notes: String,
}Fields§
§run_id: String§utc: String§git_sha: String§host_passport_key: String§adapter: String§backend: String§model_id: String§model_hash: String§layout: String§mode: String§profile: String§toggles_json: String§qualia_decode_tok_s: Option<f64>§ollama_decode_tok_s: Option<f64>§a_gap: Option<f64>§prefill_tok_s: Option<f64>§phase_ns_json: String§n_ulp_max: Option<u64>§c_score: Option<f64>§notes: StringImplementations§
Source§impl ExperimentRun
impl ExperimentRun
Trait Implementations§
Source§impl Clone for ExperimentRun
impl Clone for ExperimentRun
Source§fn clone(&self) -> ExperimentRun
fn clone(&self) -> ExperimentRun
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 ExperimentRun
impl Debug for ExperimentRun
Source§impl Default for ExperimentRun
impl Default for ExperimentRun
Source§fn default() -> ExperimentRun
fn default() -> ExperimentRun
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ExperimentRun
impl RefUnwindSafe for ExperimentRun
impl Send for ExperimentRun
impl Sync for ExperimentRun
impl Unpin for ExperimentRun
impl UnsafeUnpin for ExperimentRun
impl UnwindSafe for ExperimentRun
Blanket Implementations§
§impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
Aggregate shares in an MPC protocol.
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<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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§impl<T> NoneValue for Twhere
T: Default,
impl<T> NoneValue for Twhere
T: Default,
type NoneType = T
§fn null_value() -> T
fn null_value() -> T
The none-equivalent value.