pub struct RunToolCallObject {
pub id: String,
pub type: String,
pub function: RunToolCallObject_Function,
}
Expand description
Tool call objects
Fields§
§id: String
The ID of the tool call.
type: String
The type of tool call the output is required for.
function: RunToolCallObject_Function
Trait Implementations§
Source§impl Clone for RunToolCallObject
impl Clone for RunToolCallObject
Source§fn clone(&self) -> RunToolCallObject
fn clone(&self) -> RunToolCallObject
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for RunToolCallObject
impl RefUnwindSafe for RunToolCallObject
impl Send for RunToolCallObject
impl Sync for RunToolCallObject
impl Unpin for RunToolCallObject
impl UnwindSafe for RunToolCallObject
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