pub struct SubagentSummary {
pub agent_id: String,
pub path: PathBuf,
pub meta: Option<SubagentMeta>,
}Expand description
One subagent (sidechain) transcript found under a session’s subdirectory.
Fields§
§agent_id: StringAgent id (the file stem with its agent- prefix stripped).
Matches the agentId field on the transcript’s records.
path: PathBufPath to the transcript .jsonl.
meta: Option<SubagentMeta>Parsed sibling .meta.json, when present and parseable.
Trait Implementations§
Source§impl Clone for SubagentSummary
impl Clone for SubagentSummary
Source§fn clone(&self) -> SubagentSummary
fn clone(&self) -> SubagentSummary
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 SubagentSummary
impl Debug for SubagentSummary
Auto Trait Implementations§
impl Freeze for SubagentSummary
impl RefUnwindSafe for SubagentSummary
impl Send for SubagentSummary
impl Sync for SubagentSummary
impl Unpin for SubagentSummary
impl UnsafeUnpin for SubagentSummary
impl UnwindSafe for SubagentSummary
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