pub struct AgentRegistrySpawnRegistryTimeout {
pub child_pid: i64,
pub kind: AgentRegistrySpawnRegistryTimeoutKind,
pub log_capture: Option<AgentRegistryLogCapture>,
}Expand description
Spawn succeeded but the child did not publish a matching managed-server entry within the timeout.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§child_pid: i64Process ID of the orphaned child (so the caller can offer ‘kill the pid’ guidance)
kind: AgentRegistrySpawnRegistryTimeoutKindDiscriminator: spawn succeeded but child never registered
log_capture: Option<AgentRegistryLogCapture>Per-spawn log-capture outcome; populated from spawnLiveTarget.
Trait Implementations§
Source§impl Clone for AgentRegistrySpawnRegistryTimeout
impl Clone for AgentRegistrySpawnRegistryTimeout
Source§fn clone(&self) -> AgentRegistrySpawnRegistryTimeout
fn clone(&self) -> AgentRegistrySpawnRegistryTimeout
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 AgentRegistrySpawnRegistryTimeout
impl Default for AgentRegistrySpawnRegistryTimeout
Source§fn default() -> AgentRegistrySpawnRegistryTimeout
fn default() -> AgentRegistrySpawnRegistryTimeout
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AgentRegistrySpawnRegistryTimeout
impl<'de> Deserialize<'de> for AgentRegistrySpawnRegistryTimeout
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 AgentRegistrySpawnRegistryTimeout
impl RefUnwindSafe for AgentRegistrySpawnRegistryTimeout
impl Send for AgentRegistrySpawnRegistryTimeout
impl Sync for AgentRegistrySpawnRegistryTimeout
impl Unpin for AgentRegistrySpawnRegistryTimeout
impl UnsafeUnpin for AgentRegistrySpawnRegistryTimeout
impl UnwindSafe for AgentRegistrySpawnRegistryTimeout
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