pub struct ToolCallEvent {
pub tool_name: String,
pub tool_call_id: String,
pub input: Vec<u8>,
}Fields§
§tool_name: String§tool_call_id: String§input: Vec<u8>Trait Implementations§
Source§impl Clone for ToolCallEvent
impl Clone for ToolCallEvent
Source§fn clone(&self) -> ToolCallEvent
fn clone(&self) -> ToolCallEvent
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 Debug for ToolCallEvent
impl Debug for ToolCallEvent
Source§impl Default for ToolCallEvent
impl Default for ToolCallEvent
Source§fn default() -> ToolCallEvent
fn default() -> ToolCallEvent
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ToolCallEvent
impl RefUnwindSafe for ToolCallEvent
impl Send for ToolCallEvent
impl Sync for ToolCallEvent
impl Unpin for ToolCallEvent
impl UnsafeUnpin for ToolCallEvent
impl UnwindSafe for ToolCallEvent
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