pub enum AssertionCheck {
Command,
AgentJudgement,
PtyScript,
}Variants§
Command
Verified by running command (hard gate at mission completion).
AgentJudgement
Verified by orchestrator judgement against the full mission diff.
PtyScript
Verified by driving pty_script’s interactive target through its
scripted terminal session (ticket pty-functional-validation):
the engine runs the script in the validation round’s evidence pass
(the same pass that executes command assertions, under the same
gate-sandbox wrap), captures the bounded session transcript as a
validation artifact, and hands the functional validator the
per-step verdicts as authoritative evidence — the M5 lane extended
to terminal-native deliverables (REPLs, TUIs, interactive CLIs).
Trait Implementations§
Source§impl Clone for AssertionCheck
impl Clone for AssertionCheck
Source§fn clone(&self) -> AssertionCheck
fn clone(&self) -> AssertionCheck
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 moreimpl Copy for AssertionCheck
Source§impl Debug for AssertionCheck
impl Debug for AssertionCheck
Source§impl<'de> Deserialize<'de> for AssertionCheck
impl<'de> Deserialize<'de> for AssertionCheck
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
impl Eq for AssertionCheck
Source§impl PartialEq for AssertionCheck
impl PartialEq for AssertionCheck
Source§impl Serialize for AssertionCheck
impl Serialize for AssertionCheck
impl StructuralPartialEq for AssertionCheck
Auto Trait Implementations§
impl Freeze for AssertionCheck
impl RefUnwindSafe for AssertionCheck
impl Send for AssertionCheck
impl Sync for AssertionCheck
impl Unpin for AssertionCheck
impl UnsafeUnpin for AssertionCheck
impl UnwindSafe for AssertionCheck
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