pub struct DeltaCodeInterpreter {
    pub input: Option<String>,
    pub outputs: Option<Vec<DeltaCodeInterpreterOutput>>,
}Fields§
§input: Option<String>The input to the Code Interpreter tool call.
outputs: Option<Vec<DeltaCodeInterpreterOutput>>The outputs from the Code Interpreter tool call. Code Interpreter can output one or more items, including text (logs) or images (image). Each of these are represented by a different object type.
Trait Implementations§
Source§impl Clone for DeltaCodeInterpreter
 
impl Clone for DeltaCodeInterpreter
Source§fn clone(&self) -> DeltaCodeInterpreter
 
fn clone(&self) -> DeltaCodeInterpreter
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 DeltaCodeInterpreter
 
impl Debug for DeltaCodeInterpreter
Source§impl<'de> Deserialize<'de> for DeltaCodeInterpreter
 
impl<'de> Deserialize<'de> for DeltaCodeInterpreter
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 DeltaCodeInterpreter
 
impl PartialEq for DeltaCodeInterpreter
Source§impl Serialize for DeltaCodeInterpreter
 
impl Serialize for DeltaCodeInterpreter
impl StructuralPartialEq for DeltaCodeInterpreter
Auto Trait Implementations§
impl Freeze for DeltaCodeInterpreter
impl RefUnwindSafe for DeltaCodeInterpreter
impl Send for DeltaCodeInterpreter
impl Sync for DeltaCodeInterpreter
impl Unpin for DeltaCodeInterpreter
impl UnwindSafe for DeltaCodeInterpreter
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