pub struct ProcessToolCallParams {
pub provider_id: String,
pub tool_name: String,
pub call_id: String,
pub thread_id: ThreadId,
pub turn_id: TurnId,
pub arguments: Value,
}Expand description
tools/call params (host -> child): one invocation of a tool the
manifest declared under a tool_provider service.
Fields§
§provider_id: String§tool_name: String§call_id: String§thread_id: ThreadId§turn_id: TurnId§arguments: ValueTrait Implementations§
Source§impl Clone for ProcessToolCallParams
impl Clone for ProcessToolCallParams
Source§fn clone(&self) -> ProcessToolCallParams
fn clone(&self) -> ProcessToolCallParams
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 ProcessToolCallParams
impl Debug for ProcessToolCallParams
Source§impl<'de> Deserialize<'de> for ProcessToolCallParams
impl<'de> Deserialize<'de> for ProcessToolCallParams
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 PartialEq for ProcessToolCallParams
impl PartialEq for ProcessToolCallParams
Source§fn eq(&self, other: &ProcessToolCallParams) -> bool
fn eq(&self, other: &ProcessToolCallParams) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProcessToolCallParams
impl Serialize for ProcessToolCallParams
impl StructuralPartialEq for ProcessToolCallParams
Auto Trait Implementations§
impl Freeze for ProcessToolCallParams
impl RefUnwindSafe for ProcessToolCallParams
impl Send for ProcessToolCallParams
impl Sync for ProcessToolCallParams
impl Unpin for ProcessToolCallParams
impl UnsafeUnpin for ProcessToolCallParams
impl UnwindSafe for ProcessToolCallParams
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