pub struct TranscriptSection {
pub events_filename: String,
pub parser: Option<TranscriptParser>,
pub extract: Option<ExtractSpec>,
pub surfaces_skill_invocation: bool,
pub skill_tool: Option<String>,
pub skill_arg: Option<String>,
}Fields§
§events_filename: String§parser: Option<TranscriptParser>Named code parser — for streams that need stitching (keyed joins,
content coercion). Exactly one of parser/extract is declared.
extract: Option<ExtractSpec>Declarative extractor for flat event streams.
surfaces_skill_invocation: bool§skill_tool: Option<String>Tool name of the deterministic skill-invocation event the
__skill_invoked meta-check matches (default "Skill" — Claude
Code’s Skill tool).
skill_arg: Option<String>Argument of the skill-invocation tool that carries the staged slug
(default "skill").
Trait Implementations§
Source§impl Clone for TranscriptSection
impl Clone for TranscriptSection
Source§fn clone(&self) -> TranscriptSection
fn clone(&self) -> TranscriptSection
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 TranscriptSection
impl Debug for TranscriptSection
Source§impl<'de> Deserialize<'de> for TranscriptSection
impl<'de> Deserialize<'de> for TranscriptSection
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 TranscriptSection
impl RefUnwindSafe for TranscriptSection
impl Send for TranscriptSection
impl Sync for TranscriptSection
impl Unpin for TranscriptSection
impl UnsafeUnpin for TranscriptSection
impl UnwindSafe for TranscriptSection
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