pub struct RunStepDetailsToolCallsObject {
pub tool_calls: Vec<RunStepDetailsToolCalls>,
}
Expand description
Details of the tool call.
Fields§
§tool_calls: Vec<RunStepDetailsToolCalls>
An array of tool calls the run step was involved in. These can be associated with one of three types of tools: code_interpreter
, file_search
, or function
.
Trait Implementations§
Source§impl Clone for RunStepDetailsToolCallsObject
impl Clone for RunStepDetailsToolCallsObject
Source§fn clone(&self) -> RunStepDetailsToolCallsObject
fn clone(&self) -> RunStepDetailsToolCallsObject
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 moreSource§impl<'de> Deserialize<'de> for RunStepDetailsToolCallsObject
impl<'de> Deserialize<'de> for RunStepDetailsToolCallsObject
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 RunStepDetailsToolCallsObject
impl PartialEq for RunStepDetailsToolCallsObject
Source§fn eq(&self, other: &RunStepDetailsToolCallsObject) -> bool
fn eq(&self, other: &RunStepDetailsToolCallsObject) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for RunStepDetailsToolCallsObject
Auto Trait Implementations§
impl Freeze for RunStepDetailsToolCallsObject
impl RefUnwindSafe for RunStepDetailsToolCallsObject
impl Send for RunStepDetailsToolCallsObject
impl Sync for RunStepDetailsToolCallsObject
impl Unpin for RunStepDetailsToolCallsObject
impl UnwindSafe for RunStepDetailsToolCallsObject
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