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