Skip to main content

BenchAgenticRunEvidence

Struct BenchAgenticRunEvidence 

Source
pub struct BenchAgenticRunEvidence {
Show 20 fields pub native_run_id: String, pub scenario: String, pub submission_valid: bool, pub submission_invalid_reasons: Vec<String>, pub warmup_records: u64, pub warmup_error_records: u64, pub warmup_succeeded: bool, pub profiling_records: u64, pub distinct_runtime_conversations: u64, pub distinct_transport_requests: u64, pub context_overflow_count: u64, pub ordinary_failure_count: u64, pub branch_stats: BenchAgenticBranchStats, pub aggregate_artifact: PathBuf, pub raw_records_artifact: Option<PathBuf>, pub unavailable_dimensions: Vec<String>, pub warmup_source_coordinate_records: Option<u64>, pub source_coordinate_records: Option<u64>, pub distinct_source_traces: Option<u64>, pub cache_bust_records: Option<u64>,
}

Fields§

§native_run_id: String§scenario: String§submission_valid: bool§submission_invalid_reasons: Vec<String>§warmup_records: u64§warmup_error_records: u64§warmup_succeeded: bool

Whether the native run crossed the warmup phase and entered profiling (profiling_records > 0); snapshot-warmup failure aborts natively before profiling and therefore surfaces as an invalid submission.

§profiling_records: u64§distinct_runtime_conversations: u64§distinct_transport_requests: u64§context_overflow_count: u64§ordinary_failure_count: u64§branch_stats: BenchAgenticBranchStats§aggregate_artifact: PathBuf§raw_records_artifact: Option<PathBuf>

The raw request/response artifact; absent at the performance artifact level, where raw export is not requested.

§unavailable_dimensions: Vec<String>§warmup_source_coordinate_records: Option<u64>

Warmup records whose raw-derived source coordinates were observed; absent when the artifact level makes that mapping unavailable.

§source_coordinate_records: Option<u64>

Profiling records whose raw-derived source coordinates were observed; absent when the artifact level makes that mapping unavailable.

§distinct_source_traces: Option<u64>

Distinct source traces identified through the raw-derived coordinate mapping; absent when the artifact level makes it unavailable.

§cache_bust_records: Option<u64>

Profiling records carrying a raw cache-bust marker observation; absent when the artifact level makes that observation unavailable.

Trait Implementations§

Source§

impl Clone for BenchAgenticRunEvidence

Source§

fn clone(&self) -> BenchAgenticRunEvidence

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for BenchAgenticRunEvidence

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for BenchAgenticRunEvidence

Source§

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 Eq for BenchAgenticRunEvidence

Source§

impl JsonSchema for BenchAgenticRunEvidence

Source§

fn schema_name() -> Cow<'static, str>

The name of the generated JSON Schema. Read more
Source§

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

Generates a JSON Schema for this type. Read more
Source§

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 more
Source§

impl PartialEq for BenchAgenticRunEvidence

Source§

fn eq(&self, other: &BenchAgenticRunEvidence) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl Serialize for BenchAgenticRunEvidence

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for BenchAgenticRunEvidence

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.