pub struct RunStepDetailsToolCallsObject {
pub tool_calls: Vec<Value>,
pub _type: String,
}
Fields§
§tool_calls: Vec<Value>
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
.
_type: String
Always tool_calls
.
Trait Implementations§
Source§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
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