Struct async_openai::types::RunStepDetailsToolCallsObject
source · pub struct RunStepDetailsToolCallsObject {
pub type: String,
pub tool_calls: Vec<RunStepDetailsToolCalls>,
}Expand description
Details of the tool call.
Fields§
§type: StringAlways tool_calls.
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, retrieval, or function.
Trait Implementations§
source§impl Clone for RunStepDetailsToolCallsObject
impl Clone for RunStepDetailsToolCallsObject
source§fn clone(&self) -> RunStepDetailsToolCallsObject
fn clone(&self) -> RunStepDetailsToolCallsObject
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 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
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for RunStepDetailsToolCallsObject
Auto Trait Implementations§
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