pub enum AgentRegistrySpawnResult {
Spawned(AgentRegistrySpawnSpawned),
SpawnError(AgentRegistrySpawnError),
RegistryTimeout(AgentRegistrySpawnRegistryTimeout),
ValidationError(AgentRegistrySpawnValidationError),
}Expand description
Outcome of an agentRegistry.spawn call.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Variants§
Spawned(AgentRegistrySpawnSpawned)
SpawnError(AgentRegistrySpawnError)
RegistryTimeout(AgentRegistrySpawnRegistryTimeout)
ValidationError(AgentRegistrySpawnValidationError)
Trait Implementations§
Source§impl Clone for AgentRegistrySpawnResult
impl Clone for AgentRegistrySpawnResult
Source§fn clone(&self) -> AgentRegistrySpawnResult
fn clone(&self) -> AgentRegistrySpawnResult
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 Debug for AgentRegistrySpawnResult
impl Debug for AgentRegistrySpawnResult
Source§impl<'de> Deserialize<'de> for AgentRegistrySpawnResult
impl<'de> Deserialize<'de> for AgentRegistrySpawnResult
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
Auto Trait Implementations§
impl Freeze for AgentRegistrySpawnResult
impl RefUnwindSafe for AgentRegistrySpawnResult
impl Send for AgentRegistrySpawnResult
impl Sync for AgentRegistrySpawnResult
impl Unpin for AgentRegistrySpawnResult
impl UnsafeUnpin for AgentRegistrySpawnResult
impl UnwindSafe for AgentRegistrySpawnResult
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