pub struct RunOutcome {
pub output_text: String,
pub tool_sequence: Vec<String>,
pub finish_reason: Option<String>,
pub duration_ms: u64,
}Expand description
Result of running a fixture through a FixtureRunner.
Fields§
§output_text: StringThe final assistant text the runner produced.
tool_sequence: Vec<String>Tool calls the runner made, in the order they were dispatched.
finish_reason: Option<String>Reason the runner stopped — free-form, runner-specific.
duration_ms: u64Wall-clock duration of the run.
Trait Implementations§
Source§impl Clone for RunOutcome
impl Clone for RunOutcome
Source§fn clone(&self) -> RunOutcome
fn clone(&self) -> RunOutcome
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 RunOutcome
impl Debug for RunOutcome
Source§impl Default for RunOutcome
impl Default for RunOutcome
Source§fn default() -> RunOutcome
fn default() -> RunOutcome
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RunOutcome
impl RefUnwindSafe for RunOutcome
impl Send for RunOutcome
impl Sync for RunOutcome
impl Unpin for RunOutcome
impl UnsafeUnpin for RunOutcome
impl UnwindSafe for RunOutcome
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