pub struct ProcessSubagentDispatchParams {
pub dispatcher_id: String,
pub dispatch_id: String,
pub parent_thread_id: ThreadId,
pub parent_turn_id: TurnId,
pub request: SubagentRequest,
}Expand description
subagents/dispatch params: a canonical request plus parent provenance
and a host-chosen dispatch id the child must echo and stream against.
Fields§
§dispatcher_id: String§dispatch_id: String§parent_thread_id: ThreadId§parent_turn_id: TurnId§request: SubagentRequestTrait Implementations§
Source§impl Clone for ProcessSubagentDispatchParams
impl Clone for ProcessSubagentDispatchParams
Source§fn clone(&self) -> ProcessSubagentDispatchParams
fn clone(&self) -> ProcessSubagentDispatchParams
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<'de> Deserialize<'de> for ProcessSubagentDispatchParams
impl<'de> Deserialize<'de> for ProcessSubagentDispatchParams
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
Source§impl PartialEq for ProcessSubagentDispatchParams
impl PartialEq for ProcessSubagentDispatchParams
Source§fn eq(&self, other: &ProcessSubagentDispatchParams) -> bool
fn eq(&self, other: &ProcessSubagentDispatchParams) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ProcessSubagentDispatchParams
Auto Trait Implementations§
impl Freeze for ProcessSubagentDispatchParams
impl RefUnwindSafe for ProcessSubagentDispatchParams
impl Send for ProcessSubagentDispatchParams
impl Sync for ProcessSubagentDispatchParams
impl Unpin for ProcessSubagentDispatchParams
impl UnsafeUnpin for ProcessSubagentDispatchParams
impl UnwindSafe for ProcessSubagentDispatchParams
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