pub enum AgentRegistryLiveTargetEntryStatus {
Working,
Waiting,
Done,
Attention,
Unknown,
}Expand description
Coarse lifecycle status of the foreground session
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Variants§
Working
Session is actively processing a turn
Waiting
Session is idle, waiting for input
Done
Last turn completed successfully
Attention
Session needs user attention (see attentionKind for the specific reason)
Unknown
Unknown variant for forward compatibility.
Trait Implementations§
Source§impl Clone for AgentRegistryLiveTargetEntryStatus
impl Clone for AgentRegistryLiveTargetEntryStatus
Source§fn clone(&self) -> AgentRegistryLiveTargetEntryStatus
fn clone(&self) -> AgentRegistryLiveTargetEntryStatus
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 AgentRegistryLiveTargetEntryStatus
impl Default for AgentRegistryLiveTargetEntryStatus
Source§fn default() -> AgentRegistryLiveTargetEntryStatus
fn default() -> AgentRegistryLiveTargetEntryStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AgentRegistryLiveTargetEntryStatus
impl<'de> Deserialize<'de> for AgentRegistryLiveTargetEntryStatus
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 AgentRegistryLiveTargetEntryStatus
Source§impl PartialEq for AgentRegistryLiveTargetEntryStatus
impl PartialEq for AgentRegistryLiveTargetEntryStatus
Source§fn eq(&self, other: &AgentRegistryLiveTargetEntryStatus) -> bool
fn eq(&self, other: &AgentRegistryLiveTargetEntryStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AgentRegistryLiveTargetEntryStatus
Auto Trait Implementations§
impl Freeze for AgentRegistryLiveTargetEntryStatus
impl RefUnwindSafe for AgentRegistryLiveTargetEntryStatus
impl Send for AgentRegistryLiveTargetEntryStatus
impl Sync for AgentRegistryLiveTargetEntryStatus
impl Unpin for AgentRegistryLiveTargetEntryStatus
impl UnsafeUnpin for AgentRegistryLiveTargetEntryStatus
impl UnwindSafe for AgentRegistryLiveTargetEntryStatus
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