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
Auto Trait Implementations§
impl Freeze for RunResult
impl RefUnwindSafe for RunResult
impl Send for RunResult
impl Sync for RunResult
impl Unpin 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