pub struct RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject {
pub index: u32,
pub logs: Option<String>,
}
Expand description
Text output from the Code Interpreter tool call as part of a run step.
Fields§
§index: u32
The index of the output in the outputs array.
logs: Option<String>
The text output from the Code Interpreter tool call.
Trait Implementations§
Source§impl Clone for RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject
impl Clone for RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject
Source§fn clone(&self) -> RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject
fn clone(&self) -> RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject
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 RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject
impl<'de> Deserialize<'de> for RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject
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 RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject
impl PartialEq for RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject
Source§fn eq(
&self,
other: &RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject,
) -> bool
fn eq( &self, other: &RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject, ) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject
Auto Trait Implementations§
impl Freeze for RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject
impl RefUnwindSafe for RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject
impl Send for RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject
impl Sync for RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject
impl Unpin for RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject
impl UnwindSafe for RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject
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