pub struct RunResult {
pub outcome: RunOutcome,
pub trace: Vec<TraceEntry>,
pub minimized: Option<MinimizedSequence>,
pub warnings: Vec<RunWarning>,
pub coverage: Option<CoverageReport>,
pub corpus: Option<CorpusReport>,
}Expand description
Results of a tooltest run.
Fields§
§outcome: RunOutcomeOverall run outcome.
trace: Vec<TraceEntry>Trace of MCP calls (responses are only included on failures).
minimized: Option<MinimizedSequence>Minimized sequence for failures, when available.
warnings: Vec<RunWarning>Non-fatal warnings collected during the run.
coverage: Option<CoverageReport>Coverage report for state-machine runs, when enabled.
corpus: Option<CorpusReport>Corpus snapshot for state-machine runs, when enabled.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RunResult
impl<'de> Deserialize<'de> for RunResult
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 RunResult
impl JsonSchema for RunResult
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 moreAuto Trait Implementations§
impl Freeze for RunResult
impl RefUnwindSafe for RunResult
impl Send for RunResult
impl Sync for RunResult
impl Unpin for RunResult
impl UnsafeUnpin for RunResult
impl UnwindSafe for RunResult
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