pub struct ToolResultPayload {
pub output: String,
pub tool_call_id: Uuid,
pub is_error: bool,
}Fields§
§output: StringTool execution result (text, JSON string, error message, etc.)
tool_call_id: UuidLogical parent (Tool Call) reference ID Separate from parent_id (time-series parent) to explicitly identify which call this result belongs to
is_error: boolExecution success or failure
Trait Implementations§
Source§impl Clone for ToolResultPayload
impl Clone for ToolResultPayload
Source§fn clone(&self) -> ToolResultPayload
fn clone(&self) -> ToolResultPayload
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 ToolResultPayload
impl Debug for ToolResultPayload
Source§impl<'de> Deserialize<'de> for ToolResultPayload
impl<'de> Deserialize<'de> for ToolResultPayload
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 ToolResultPayload
impl RefUnwindSafe for ToolResultPayload
impl Send for ToolResultPayload
impl Sync for ToolResultPayload
impl Unpin for ToolResultPayload
impl UnwindSafe for ToolResultPayload
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