pub struct ToolCallSummary {
pub name: String,
pub args_summary: String,
pub result_summary: String,
}Expand description
Summary of a tool call within a conversation turn.
Fields§
§name: StringName of the tool that was called.
args_summary: StringFirst 200 chars of JSON args.
result_summary: StringFirst 200 chars of JSON result.
Trait Implementations§
Source§impl Clone for ToolCallSummary
impl Clone for ToolCallSummary
Source§fn clone(&self) -> ToolCallSummary
fn clone(&self) -> ToolCallSummary
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 ToolCallSummary
impl RefUnwindSafe for ToolCallSummary
impl Send for ToolCallSummary
impl Sync for ToolCallSummary
impl Unpin for ToolCallSummary
impl UnsafeUnpin for ToolCallSummary
impl UnwindSafe for ToolCallSummary
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