pub struct RemoteToolCallSummary {
pub call_id: Option<String>,
pub tool_name: String,
pub args: Value,
pub outcome: RemoteToolCallOutcome,
pub duration_ms: u64,
}Fields§
§call_id: Option<String>§tool_name: String§args: Value§outcome: RemoteToolCallOutcome§duration_ms: u64Trait Implementations§
Source§impl Clone for RemoteToolCallSummary
impl Clone for RemoteToolCallSummary
Source§fn clone(&self) -> RemoteToolCallSummary
fn clone(&self) -> RemoteToolCallSummary
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 RemoteToolCallSummary
impl Debug for RemoteToolCallSummary
Source§impl<'de> Deserialize<'de> for RemoteToolCallSummary
impl<'de> Deserialize<'de> for RemoteToolCallSummary
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
Source§impl JsonSchema for RemoteToolCallSummary
impl JsonSchema for RemoteToolCallSummary
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for RemoteToolCallSummary
impl PartialEq for RemoteToolCallSummary
Source§fn eq(&self, other: &RemoteToolCallSummary) -> bool
fn eq(&self, other: &RemoteToolCallSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RemoteToolCallSummary
impl Serialize for RemoteToolCallSummary
impl StructuralPartialEq for RemoteToolCallSummary
Auto Trait Implementations§
impl Freeze for RemoteToolCallSummary
impl RefUnwindSafe for RemoteToolCallSummary
impl Send for RemoteToolCallSummary
impl Sync for RemoteToolCallSummary
impl Unpin for RemoteToolCallSummary
impl UnsafeUnpin for RemoteToolCallSummary
impl UnwindSafe for RemoteToolCallSummary
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