pub struct RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject {
pub index: i64,
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: i64The index of the output in the outputs array.
type: StringAlways 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 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 Default for RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject
impl Default for RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject
Source§fn default() -> RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject
fn default() -> RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject
Returns the “default value” for a type. Read more
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