pub enum ActivityEventKind {
Message {
role: MessageRole,
text: String,
},
ToolCall {
tool: String,
call_id: String,
input: Value,
},
ToolResult {
call_id: String,
output: Value,
is_error: bool,
},
Progress {
detail: ProgressDetail,
},
Stop {
reason: StopKind,
},
Raw {
source: String,
value: Value,
},
Delta {
message_id: String,
text_fragment: String,
},
}Expand description
The payload of an ActivityEvent — the classified kind of transcript signal.
Kinds are LOCKED: Message, ToolCall, ToolResult, Progress, Stop, Raw, plus
Delta carried on the same channel but flagged ephemeral (forwarded to the WS, never
persisted). Self::Raw is the passthrough fallback — critical for the harness-agnostic
path and for forward-compat when a harness adds an event shape the adapter does not yet map.
Variants§
Message
A complete conversational message (assistant text/thinking, an operator turn, etc.).
ToolCall
The agent invoked a tool/function with structured input.
Fields
call_id: StringCorrelation id linking this call to its eventual Self::ToolResult.
ToolResult
A tool/function returned a result for a prior Self::ToolCall.
Fields
call_id: StringCorrelation id matching the originating Self::ToolCall.
Progress
A fine-grained, non-terminal progress signal.
Fields
detail: ProgressDetailThe progress detail.
Stop
The agent run reached a terminal boundary.
Raw
Passthrough fallback for an unmapped or other-harness line.
Carries the source label the adapter observed and the raw value verbatim, so nothing is ever silently dropped and the harness-agnostic path stays lossless.
Fields
Delta
An ephemeral token delta — forwarded to the WS only, never persisted.
Always carried with ActivityEvent::ephemeral set to true.
Trait Implementations§
Source§impl Clone for ActivityEventKind
impl Clone for ActivityEventKind
Source§fn clone(&self) -> ActivityEventKind
fn clone(&self) -> ActivityEventKind
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for ActivityEventKind
impl Debug for ActivityEventKind
Source§impl<'de> Deserialize<'de> for ActivityEventKind
impl<'de> Deserialize<'de> for ActivityEventKind
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>,
Source§impl PartialEq for ActivityEventKind
impl PartialEq for ActivityEventKind
Source§impl Serialize for ActivityEventKind
impl Serialize for ActivityEventKind
impl StructuralPartialEq for ActivityEventKind
Source§impl TS for ActivityEventKind
impl TS for ActivityEventKind
Source§type WithoutGenerics = ActivityEventKind
type WithoutGenerics = ActivityEventKind
WithoutGenerics should just be Self.
If the type does have generic parameters, then all generic parameters must be replaced with
a dummy type, e.g ts_rs::Dummy or (). The only requirement for these dummy types is that
EXPORT_TO must be None. Read moreSource§type OptionInnerType = ActivityEventKind
type OptionInnerType = ActivityEventKind
std::option::Option<T>, then this associated type is set to T.
All other implementations of TS should set this type to Self instead.Source§fn docs() -> Option<String>
fn docs() -> Option<String>
TS is derived, docs are
automatically read from your doc comments or #[doc = ".."] attributesSource§fn decl_concrete(cfg: &Config) -> String
fn decl_concrete(cfg: &Config) -> String
TS::decl().
If this type is not generic, then this function is equivalent to TS::decl().Source§fn decl(cfg: &Config) -> String
fn decl(cfg: &Config) -> String
type User = { user_id: number, ... }.
This function will panic if the type has no declaration. Read moreSource§fn inline(cfg: &Config) -> String
fn inline(cfg: &Config) -> String
{ user_id: number }.
This function will panic if the type cannot be inlined.Source§fn inline_flattened(cfg: &Config) -> String
fn inline_flattened(cfg: &Config) -> String
Source§fn visit_generics(v: &mut impl TypeVisitor)where
Self: 'static,
fn visit_generics(v: &mut impl TypeVisitor)where
Self: 'static,
Source§fn output_path() -> Option<PathBuf>
fn output_path() -> Option<PathBuf>
T should be exported, relative to the output directory.
The returned path does not include any base directory. Read moreSource§fn visit_dependencies(v: &mut impl TypeVisitor)where
Self: 'static,
fn visit_dependencies(v: &mut impl TypeVisitor)where
Self: 'static,
Source§fn dependencies(cfg: &Config) -> Vec<Dependency>where
Self: 'static,
fn dependencies(cfg: &Config) -> Vec<Dependency>where
Self: 'static,
Source§fn export(cfg: &Config) -> Result<(), ExportError>where
Self: 'static,
fn export(cfg: &Config) -> Result<(), ExportError>where
Self: 'static,
TS::export_all. Read moreSource§fn export_all(cfg: &Config) -> Result<(), ExportError>where
Self: 'static,
fn export_all(cfg: &Config) -> Result<(), ExportError>where
Self: 'static,
TS::export. Read more