pub struct AgentGoalRun {
pub check: String,
pub max_iterations: u32,
pub iterations: u32,
pub met: bool,
pub grounded: bool,
pub last_exit_code: Option<i32>,
pub last_reason: String,
}Fields§
§check: String§max_iterations: u32§iterations: u32§met: bool§grounded: boolWhether the goal result came from deterministic verifier evidence.
A nonzero shell exit is still grounded evidence: it proves the goal is
not met yet. Keep this separate from met so hosts and observability do
not count ordinary verifier failures as ungrounded model judgment.
last_exit_code: Option<i32>§last_reason: StringTrait Implementations§
Source§impl Clone for AgentGoalRun
impl Clone for AgentGoalRun
Auto Trait Implementations§
impl Freeze for AgentGoalRun
impl RefUnwindSafe for AgentGoalRun
impl Send for AgentGoalRun
impl Sync for AgentGoalRun
impl Unpin for AgentGoalRun
impl UnsafeUnpin for AgentGoalRun
impl UnwindSafe for AgentGoalRun
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<S, T> Duplex<S> for Twhere
T: FromSample<S> + ToSample<S>,
impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more