pub struct AgentRegistrySpawnSpawned {
pub entry: AgentRegistryLiveTargetEntry,
pub initial_prompt_error: Option<String>,
pub initial_prompt_sent: Option<bool>,
pub kind: AgentRegistrySpawnSpawnedKind,
pub log_capture: Option<AgentRegistryLogCapture>,
}Expand description
Managed-server child was spawned and registered successfully.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§entry: AgentRegistryLiveTargetEntryFull registry entry for the spawned child. Lets the controller call handleLiveTargetSelected(entry) directly without re-reading the registry (avoids a TOCTOU window).
initial_prompt_error: Option<String>If the delegate attempted to send the initial prompt and failed, the categorized error message.
initial_prompt_sent: Option<bool>Whether the delegate already sent the initial prompt. Always omitted in the current wiring: the controller sends the prompt post-attach via the standard LocalRpcSession.send path.
kind: AgentRegistrySpawnSpawnedKindDiscriminator: managed-server child spawned successfully
log_capture: Option<AgentRegistryLogCapture>Per-spawn log-capture outcome; populated from spawnLiveTarget.
Trait Implementations§
Source§impl Clone for AgentRegistrySpawnSpawned
impl Clone for AgentRegistrySpawnSpawned
Source§fn clone(&self) -> AgentRegistrySpawnSpawned
fn clone(&self) -> AgentRegistrySpawnSpawned
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more