pub struct BenchRuntimeSessionResult {
pub phase: String,
pub runtime_session_id: String,
pub template_identity: String,
pub planned_turns: u32,
pub attempted_turns: u32,
pub status: ClientStatus,
pub failure_classification: Option<String>,
pub diagnostic: Option<String>,
pub failing_turn: Option<u32>,
pub suppressed_later_turns: u32,
}Expand description
Terminal evidence for one admitted runtime session.
Fields§
§phase: String§runtime_session_id: String§template_identity: String§planned_turns: u32§attempted_turns: u32§status: ClientStatus§failure_classification: Option<String>§diagnostic: Option<String>§failing_turn: Option<u32>§suppressed_later_turns: u32Trait Implementations§
Source§impl Clone for BenchRuntimeSessionResult
impl Clone for BenchRuntimeSessionResult
Source§fn clone(&self) -> BenchRuntimeSessionResult
fn clone(&self) -> BenchRuntimeSessionResult
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 BenchRuntimeSessionResult
impl Debug for BenchRuntimeSessionResult
Source§impl<'de> Deserialize<'de> for BenchRuntimeSessionResult
impl<'de> Deserialize<'de> for BenchRuntimeSessionResult
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 BenchRuntimeSessionResult
impl JsonSchema for BenchRuntimeSessionResult
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 moreimpl StructuralPartialEq for BenchRuntimeSessionResult
Auto Trait Implementations§
impl Freeze for BenchRuntimeSessionResult
impl RefUnwindSafe for BenchRuntimeSessionResult
impl Send for BenchRuntimeSessionResult
impl Sync for BenchRuntimeSessionResult
impl Unpin for BenchRuntimeSessionResult
impl UnsafeUnpin for BenchRuntimeSessionResult
impl UnwindSafe for BenchRuntimeSessionResult
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