Struct Atif Tool Call
Generated from cargo doc --no-deps -p nemo-relay -p nemo-relay-adaptive -p nemo-relay-ffi.
pub struct AtifToolCall {
pub tool_call_id: String,
pub function_name: String,
pub arguments: Json,
pub extra: Option<Json>,
}
A tool call made by the agent.
Fields
tool_call_id: String
Correlation ID linking this call to its observation result.
function_name: String
Name of the tool/function called.
arguments: Json
Arguments passed to the tool.
extra: Option<Json>
Provider or host-specific metadata for this tool call.
Trait Implementations
impl Clone for AtifToolCall
impl Clone for AtifToolCall
clone
fn clone(&self) -> AtifToolCall
clone_from
fn clone_from(&mut self, source: &Self)
impl Debug for AtifToolCall
impl Debug for AtifToolCall
fmt
fn fmt(&self, f: &mut Formatter<'_>) -> Result
impl<'de> Deserialize<'de> for AtifToolCall
impl<'de> Deserialize<'de> for AtifToolCall
deserialize
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl Serialize for AtifToolCall
impl Serialize for AtifToolCall
serialize
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where
__S: Serializer,