pub struct TranscriptFile {
pub path: PathBuf,
pub agent_id: Option<String>,
pub meta: SubagentMeta,
}Expand description
One transcript file in a session’s upload set.
Fields§
§path: PathBufAbsolute path to the .jsonl file.
agent_id: Option<String>None for the main transcript; Some(<id>) for
subagents/agent-<id>.jsonl.
meta: SubagentMetaParsed agent-<id>.meta.json when present (subagents only).
Missing or malformed meta degrades to the default (empty)
fields, matching the Go client’s best-effort decode.
Implementations§
Trait Implementations§
Source§impl Clone for TranscriptFile
impl Clone for TranscriptFile
Source§fn clone(&self) -> TranscriptFile
fn clone(&self) -> TranscriptFile
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 TranscriptFile
impl Debug for TranscriptFile
impl Eq for TranscriptFile
Source§impl PartialEq for TranscriptFile
impl PartialEq for TranscriptFile
impl StructuralPartialEq for TranscriptFile
Auto Trait Implementations§
impl Freeze for TranscriptFile
impl RefUnwindSafe for TranscriptFile
impl Send for TranscriptFile
impl Sync for TranscriptFile
impl Unpin for TranscriptFile
impl UnsafeUnpin for TranscriptFile
impl UnwindSafe for TranscriptFile
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.