pub enum AgentRegistryLiveTargetEntryKind {
UiServer,
ManagedServer,
Unknown,
}Expand description
Process kind tag for the registry entry
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Variants§
UiServer
Interactive Copilot CLI exposing a UI server (legacy/normal CLI process)
ManagedServer
Headless --server --managed-server child spawned by a controller
Unknown
Unknown variant for forward compatibility.
Trait Implementations§
Source§impl Clone for AgentRegistryLiveTargetEntryKind
impl Clone for AgentRegistryLiveTargetEntryKind
Source§fn clone(&self) -> AgentRegistryLiveTargetEntryKind
fn clone(&self) -> AgentRegistryLiveTargetEntryKind
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 AgentRegistryLiveTargetEntryKind
impl Default for AgentRegistryLiveTargetEntryKind
Source§fn default() -> AgentRegistryLiveTargetEntryKind
fn default() -> AgentRegistryLiveTargetEntryKind
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AgentRegistryLiveTargetEntryKind
impl<'de> Deserialize<'de> for AgentRegistryLiveTargetEntryKind
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 AgentRegistryLiveTargetEntryKind
Source§impl PartialEq for AgentRegistryLiveTargetEntryKind
impl PartialEq for AgentRegistryLiveTargetEntryKind
Source§fn eq(&self, other: &AgentRegistryLiveTargetEntryKind) -> bool
fn eq(&self, other: &AgentRegistryLiveTargetEntryKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AgentRegistryLiveTargetEntryKind
Auto Trait Implementations§
impl Freeze for AgentRegistryLiveTargetEntryKind
impl RefUnwindSafe for AgentRegistryLiveTargetEntryKind
impl Send for AgentRegistryLiveTargetEntryKind
impl Sync for AgentRegistryLiveTargetEntryKind
impl Unpin for AgentRegistryLiveTargetEntryKind
impl UnsafeUnpin for AgentRegistryLiveTargetEntryKind
impl UnwindSafe for AgentRegistryLiveTargetEntryKind
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