pub struct RunStepDeltaStepDetailsToolCallsObject {
pub tool_calls: Option<Vec<RunStepDeltaStepDetailsToolCalls>>,
}
Expand description
Details of the tool call.
Fields§
§tool_calls: Option<Vec<RunStepDeltaStepDetailsToolCalls>>
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 RunStepDeltaStepDetailsToolCallsObject
impl Clone for RunStepDeltaStepDetailsToolCallsObject
Source§fn clone(&self) -> RunStepDeltaStepDetailsToolCallsObject
fn clone(&self) -> RunStepDeltaStepDetailsToolCallsObject
Returns a copy 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 RunStepDeltaStepDetailsToolCallsObject
impl<'de> Deserialize<'de> for RunStepDeltaStepDetailsToolCallsObject
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 RunStepDeltaStepDetailsToolCallsObject
impl PartialEq for RunStepDeltaStepDetailsToolCallsObject
Source§fn eq(&self, other: &RunStepDeltaStepDetailsToolCallsObject) -> bool
fn eq(&self, other: &RunStepDeltaStepDetailsToolCallsObject) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for RunStepDeltaStepDetailsToolCallsObject
Auto Trait Implementations§
impl Freeze for RunStepDeltaStepDetailsToolCallsObject
impl RefUnwindSafe for RunStepDeltaStepDetailsToolCallsObject
impl Send for RunStepDeltaStepDetailsToolCallsObject
impl Sync for RunStepDeltaStepDetailsToolCallsObject
impl Unpin for RunStepDeltaStepDetailsToolCallsObject
impl UnwindSafe for RunStepDeltaStepDetailsToolCallsObject
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