pub struct RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject {
pub index: u32,
pub type: String,
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.
type: String
Always logs
.
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 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 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
This method 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