pub enum AskHumanFallback {
Wait,
Fail,
Auto,
}Expand description
The ask_human fallback disposition.
Variants§
Wait
Park the ask until its timeout (then it fails).
Fail
Error immediately — the caller (model / workflow policy) decides.
Auto
An LLM judge answers on the operator’s behalf (also fires when an
interface-served gate times out unanswered). UNDECIDED ⇒ fail.
Trait Implementations§
Source§impl Clone for AskHumanFallback
impl Clone for AskHumanFallback
Source§fn clone(&self) -> AskHumanFallback
fn clone(&self) -> AskHumanFallback
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 AskHumanFallback
Source§impl Debug for AskHumanFallback
impl Debug for AskHumanFallback
Source§impl Default for AskHumanFallback
impl Default for AskHumanFallback
Source§fn default() -> AskHumanFallback
fn default() -> AskHumanFallback
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AskHumanFallback
impl<'de> Deserialize<'de> for AskHumanFallback
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 AskHumanFallback
Source§impl PartialEq for AskHumanFallback
impl PartialEq for AskHumanFallback
impl StructuralPartialEq for AskHumanFallback
Auto Trait Implementations§
impl Freeze for AskHumanFallback
impl RefUnwindSafe for AskHumanFallback
impl Send for AskHumanFallback
impl Sync for AskHumanFallback
impl Unpin for AskHumanFallback
impl UnsafeUnpin for AskHumanFallback
impl UnwindSafe for AskHumanFallback
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