pub struct CodeInterpreterTextOutput {
pub type: String,
pub logs: String,
}
Expand description
The output of a code interpreter tool call that is text.
Fields§
§type: String
The type of the code interpreter text output.
logs: String
The logs of the code interpreter tool call.
Trait Implementations§
Source§impl Clone for CodeInterpreterTextOutput
impl Clone for CodeInterpreterTextOutput
Source§fn clone(&self) -> CodeInterpreterTextOutput
fn clone(&self) -> CodeInterpreterTextOutput
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 Debug for CodeInterpreterTextOutput
impl Debug for CodeInterpreterTextOutput
Source§impl Default for CodeInterpreterTextOutput
impl Default for CodeInterpreterTextOutput
Source§fn default() -> CodeInterpreterTextOutput
fn default() -> CodeInterpreterTextOutput
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CodeInterpreterTextOutput
impl RefUnwindSafe for CodeInterpreterTextOutput
impl Send for CodeInterpreterTextOutput
impl Sync for CodeInterpreterTextOutput
impl Unpin for CodeInterpreterTextOutput
impl UnwindSafe for CodeInterpreterTextOutput
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