pub struct DynamicToolCallParams {
pub arguments: Value,
pub call_id: String,
pub namespace: Option<String>,
pub thread_id: String,
pub tool: String,
pub turn_id: String,
}Fields§
§arguments: Value§call_id: String§namespace: Option<String>§thread_id: String§tool: String§turn_id: StringTrait Implementations§
Source§impl Clone for DynamicToolCallParams
impl Clone for DynamicToolCallParams
Source§fn clone(&self) -> DynamicToolCallParams
fn clone(&self) -> DynamicToolCallParams
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 DynamicToolCallParams
impl Debug for DynamicToolCallParams
Source§impl<'de> Deserialize<'de> for DynamicToolCallParams
impl<'de> Deserialize<'de> for DynamicToolCallParams
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 DynamicToolCallParams
impl PartialEq for DynamicToolCallParams
Source§fn eq(&self, other: &DynamicToolCallParams) -> bool
fn eq(&self, other: &DynamicToolCallParams) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DynamicToolCallParams
impl Serialize for DynamicToolCallParams
impl StructuralPartialEq for DynamicToolCallParams
Auto Trait Implementations§
impl Freeze for DynamicToolCallParams
impl RefUnwindSafe for DynamicToolCallParams
impl Send for DynamicToolCallParams
impl Sync for DynamicToolCallParams
impl Unpin for DynamicToolCallParams
impl UnsafeUnpin for DynamicToolCallParams
impl UnwindSafe for DynamicToolCallParams
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