pub struct ToolCallTrace {
pub id: String,
pub name: String,
pub arguments: String,
}Expand description
Compact tool call info for EventLine::ToolStart.
Fields§
§id: String§name: String§arguments: StringTrait Implementations§
Source§impl Clone for ToolCallTrace
impl Clone for ToolCallTrace
Source§fn clone(&self) -> ToolCallTrace
fn clone(&self) -> ToolCallTrace
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 moreSource§impl Debug for ToolCallTrace
impl Debug for ToolCallTrace
Source§impl<'de> Deserialize<'de> for ToolCallTrace
impl<'de> Deserialize<'de> for ToolCallTrace
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 ToolCallTrace
impl RefUnwindSafe for ToolCallTrace
impl Send for ToolCallTrace
impl Sync for ToolCallTrace
impl Unpin for ToolCallTrace
impl UnsafeUnpin for ToolCallTrace
impl UnwindSafe for ToolCallTrace
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