pub struct StreamChunk {
pub delta: Option<String>,
pub reasoning_delta: Option<String>,
pub tool_calls: Vec<ToolCall>,
pub done: bool,
pub response: Option<Response>,
}Expand description
A chunk from a streaming response.
Fields§
§delta: Option<String>The delta text content.
reasoning_delta: Option<String>Reasoning content delta (for reasoning models).
tool_calls: Vec<ToolCall>Tool calls in this chunk.
done: boolWhether this is the final chunk.
response: Option<Response>The full response (only present in the final chunk).
Implementations§
Source§impl StreamChunk
impl StreamChunk
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 moreAuto 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