pub struct ToolExecutionReport {
pub tool_run_id: ToolRunId,
pub call_id: String,
pub tool_name: String,
pub exit_status: i32,
pub duration_ms: u64,
pub outcome: ToolOutcome,
}Fields§
§tool_run_id: ToolRunId§call_id: String§tool_name: String§exit_status: i32§duration_ms: u64§outcome: ToolOutcomeTrait Implementations§
Source§impl Clone for ToolExecutionReport
impl Clone for ToolExecutionReport
Source§fn clone(&self) -> ToolExecutionReport
fn clone(&self) -> ToolExecutionReport
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 ToolExecutionReport
impl Debug for ToolExecutionReport
Source§impl<'de> Deserialize<'de> for ToolExecutionReport
impl<'de> Deserialize<'de> for ToolExecutionReport
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 ToolExecutionReport
impl RefUnwindSafe for ToolExecutionReport
impl Send for ToolExecutionReport
impl Sync for ToolExecutionReport
impl Unpin for ToolExecutionReport
impl UnsafeUnpin for ToolExecutionReport
impl UnwindSafe for ToolExecutionReport
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