pub struct SubagentInfo {
pub parent_key: Option<String>,
pub task: Option<String>,
pub label: Option<String>,
}Expand description
Sub-agent context with parent information for isolation.
Fields§
§parent_key: Option<String>Parent session key for communication.
task: Option<String>Task description assigned to this sub-agent.
label: Option<String>Label if provided.
Trait Implementations§
Source§impl Clone for SubagentInfo
impl Clone for SubagentInfo
Source§fn clone(&self) -> SubagentInfo
fn clone(&self) -> SubagentInfo
Returns a duplicate of the value. Read more
1.0.0 · 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 SubagentInfo
impl Debug for SubagentInfo
Source§impl Default for SubagentInfo
impl Default for SubagentInfo
Source§fn default() -> SubagentInfo
fn default() -> SubagentInfo
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SubagentInfo
impl RefUnwindSafe for SubagentInfo
impl Send for SubagentInfo
impl Sync for SubagentInfo
impl Unpin for SubagentInfo
impl UnsafeUnpin for SubagentInfo
impl UnwindSafe for SubagentInfo
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