pub enum StreamChunk {
TextDelta {
delta: String,
},
ToolCall {
name: String,
arguments: Value,
},
Progress {
message: String,
fraction: Option<f32>,
},
Artifact {
name: String,
data: Value,
mime_type: Option<String>,
},
Final {
output: Value,
},
Error {
message: String,
},
}Expand description
A typed stream chunk for structured streaming across all protocol adapters.
Follows the OTel GenAI structured streaming convention: text_delta → tool_call → progress → artifact → final
Variants§
TextDelta
Incremental text delta (LLM streaming tokens).
ToolCall
A tool call invocation during streaming.
Progress
Progress indicator (0.0–1.0).
Artifact
A completed artifact (file, data, structured output).
Final
Final completed output. Signals end of stream.
Error
Error that terminates the stream.
Trait Implementations§
Source§impl Clone for StreamChunk
impl Clone for StreamChunk
Source§fn clone(&self) -> StreamChunk
fn clone(&self) -> StreamChunk
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 StreamChunk
impl Debug for StreamChunk
Source§impl<'de> Deserialize<'de> for StreamChunk
impl<'de> Deserialize<'de> for StreamChunk
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 StreamChunk
impl RefUnwindSafe for StreamChunk
impl Send for StreamChunk
impl Sync for StreamChunk
impl Unpin for StreamChunk
impl UnsafeUnpin for StreamChunk
impl UnwindSafe for StreamChunk
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