pub enum AgentRegistryLiveTargetEntryAttentionKind {
Error,
Permission,
ExitPlan,
Elicitation,
UserInput,
Unknown,
}Expand description
Kind of attention required when status === “attention”. Meaningful only when status === “attention”.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Variants§
Error
Session is blocked on an unrecoverable error
Permission
Session is waiting for a tool-permission decision
ExitPlan
Session is waiting for the user to approve or reject a plan
Elicitation
Session is waiting on an elicitation prompt
UserInput
Session is waiting for free-form user input
Unknown
Unknown variant for forward compatibility.
Trait Implementations§
Source§impl Clone for AgentRegistryLiveTargetEntryAttentionKind
impl Clone for AgentRegistryLiveTargetEntryAttentionKind
Source§fn clone(&self) -> AgentRegistryLiveTargetEntryAttentionKind
fn clone(&self) -> AgentRegistryLiveTargetEntryAttentionKind
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 moreSource§impl Default for AgentRegistryLiveTargetEntryAttentionKind
impl Default for AgentRegistryLiveTargetEntryAttentionKind
Source§fn default() -> AgentRegistryLiveTargetEntryAttentionKind
fn default() -> AgentRegistryLiveTargetEntryAttentionKind
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AgentRegistryLiveTargetEntryAttentionKind
impl<'de> Deserialize<'de> for AgentRegistryLiveTargetEntryAttentionKind
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 AgentRegistryLiveTargetEntryAttentionKind
Source§impl PartialEq for AgentRegistryLiveTargetEntryAttentionKind
impl PartialEq for AgentRegistryLiveTargetEntryAttentionKind
Source§fn eq(&self, other: &AgentRegistryLiveTargetEntryAttentionKind) -> bool
fn eq(&self, other: &AgentRegistryLiveTargetEntryAttentionKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AgentRegistryLiveTargetEntryAttentionKind
Auto Trait Implementations§
impl Freeze for AgentRegistryLiveTargetEntryAttentionKind
impl RefUnwindSafe for AgentRegistryLiveTargetEntryAttentionKind
impl Send for AgentRegistryLiveTargetEntryAttentionKind
impl Sync for AgentRegistryLiveTargetEntryAttentionKind
impl Unpin for AgentRegistryLiveTargetEntryAttentionKind
impl UnsafeUnpin for AgentRegistryLiveTargetEntryAttentionKind
impl UnwindSafe for AgentRegistryLiveTargetEntryAttentionKind
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