pub struct AfterToolCallContext {
pub tool_call_id: String,
pub tool_name: String,
pub result: ToolResult,
}Expand description
Context provided after a tool call has been executed.
Fields§
§tool_call_id: String§tool_name: String§result: ToolResultAuto Trait Implementations§
impl Freeze for AfterToolCallContext
impl RefUnwindSafe for AfterToolCallContext
impl Send for AfterToolCallContext
impl Sync for AfterToolCallContext
impl Unpin for AfterToolCallContext
impl UnsafeUnpin for AfterToolCallContext
impl UnwindSafe for AfterToolCallContext
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