pub struct DynamicToolCall {
pub call_id: String,
pub tool: String,
pub arguments: Value,
}Expand description
A dynamic function call requested by Codex.
Fields§
§call_id: StringProtocol call identifier used when returning the result.
tool: StringDynamic function name.
arguments: ValueParsed JSON arguments supplied by the model.
Trait Implementations§
Source§impl Clone for DynamicToolCall
impl Clone for DynamicToolCall
Source§fn clone(&self) -> DynamicToolCall
fn clone(&self) -> DynamicToolCall
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 DynamicToolCall
impl Debug for DynamicToolCall
Source§impl PartialEq for DynamicToolCall
impl PartialEq for DynamicToolCall
impl StructuralPartialEq for DynamicToolCall
Auto Trait Implementations§
impl Freeze for DynamicToolCall
impl RefUnwindSafe for DynamicToolCall
impl Send for DynamicToolCall
impl Sync for DynamicToolCall
impl Unpin for DynamicToolCall
impl UnsafeUnpin for DynamicToolCall
impl UnwindSafe for DynamicToolCall
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