pub enum EscalationReason {
SpanOutlier,
UnverifiedClaim,
}Expand description
Which comparison flagged a landed step for a second opinion.
Variants§
SpanOutlier
This step’s span took far more calls than the plan’s other completed steps — maybe the decomposition was wrong, maybe the work was just harder. The model, not a threshold, tells the two apart.
UnverifiedClaim
The step’s own words read as a checkable claim, but nothing in its span looks like a check. The eval rig’s “grade the artifact, never the claim”, one tier down.
Trait Implementations§
Source§impl Clone for EscalationReason
impl Clone for EscalationReason
Source§fn clone(&self) -> EscalationReason
fn clone(&self) -> EscalationReason
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 EscalationReason
Source§impl Debug for EscalationReason
impl Debug for EscalationReason
impl Eq for EscalationReason
Source§impl PartialEq for EscalationReason
impl PartialEq for EscalationReason
impl StructuralPartialEq for EscalationReason
Auto Trait Implementations§
impl Freeze for EscalationReason
impl RefUnwindSafe for EscalationReason
impl Send for EscalationReason
impl Sync for EscalationReason
impl Unpin for EscalationReason
impl UnsafeUnpin for EscalationReason
impl UnwindSafe for EscalationReason
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