pub struct ToolExecutionPartialResultData {
pub partial_output: String,
pub tool_call_id: String,
}Expand description
Streaming tool execution output for incremental result display
Fields§
§partial_output: StringIncremental output chunk from the running tool
tool_call_id: StringTool call ID this partial result belongs to
Trait Implementations§
Source§impl Clone for ToolExecutionPartialResultData
impl Clone for ToolExecutionPartialResultData
Source§fn clone(&self) -> ToolExecutionPartialResultData
fn clone(&self) -> ToolExecutionPartialResultData
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<'de> Deserialize<'de> for ToolExecutionPartialResultData
impl<'de> Deserialize<'de> for ToolExecutionPartialResultData
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 ToolExecutionPartialResultData
impl RefUnwindSafe for ToolExecutionPartialResultData
impl Send for ToolExecutionPartialResultData
impl Sync for ToolExecutionPartialResultData
impl Unpin for ToolExecutionPartialResultData
impl UnsafeUnpin for ToolExecutionPartialResultData
impl UnwindSafe for ToolExecutionPartialResultData
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