pub enum StageSkipReason {
Network,
Llm,
NonDeterministic,
Process,
NoExamples,
NoImplementation,
}Expand description
Why a stage’s behavioral verification is not meaningful.
Variants§
Network
Stage carries Effect::Network.
Llm
Stage carries Effect::Llm.
NonDeterministic
Stage carries Effect::NonDeterministic.
Process
Stage carries Effect::Process — touches external process state.
NoExamples
Stage has no examples to verify against.
NoImplementation
Executor reports no implementation for this stage ID.
Trait Implementations§
Source§impl Clone for StageSkipReason
impl Clone for StageSkipReason
Source§fn clone(&self) -> StageSkipReason
fn clone(&self) -> StageSkipReason
Returns a duplicate of the value. Read more
1.0.0 · 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 StageSkipReason
impl Debug for StageSkipReason
Source§impl Display for StageSkipReason
impl Display for StageSkipReason
Source§impl PartialEq for StageSkipReason
impl PartialEq for StageSkipReason
impl Copy for StageSkipReason
impl Eq for StageSkipReason
impl StructuralPartialEq for StageSkipReason
Auto Trait Implementations§
impl Freeze for StageSkipReason
impl RefUnwindSafe for StageSkipReason
impl Send for StageSkipReason
impl Sync for StageSkipReason
impl Unpin for StageSkipReason
impl UnsafeUnpin for StageSkipReason
impl UnwindSafe for StageSkipReason
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.