pub enum Blocker {
Access,
Tooling,
Ambiguity,
Environment,
Decision,
Other,
}Expand description
What kind of thing an agent is stuck on. Coarse on purpose: the point is to make “half my runs are stuck on credentials” visible at a glance, with the detail in the prose.
Variants§
Access
access
Tooling
tooling
Ambiguity
ambiguity
Environment
environment
Decision
decision
Other
other
Trait Implementations§
impl Copy for Blocker
Source§impl<'de> Deserialize<'de> for Blocker
impl<'de> Deserialize<'de> for Blocker
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 Blocker
impl StructuralPartialEq for Blocker
Auto Trait Implementations§
impl Freeze for Blocker
impl RefUnwindSafe for Blocker
impl Send for Blocker
impl Sync for Blocker
impl Unpin for Blocker
impl UnsafeUnpin for Blocker
impl UnwindSafe for Blocker
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