pub enum CodeInterpreterOutput {
    Logs(RunStepDetailsToolCallsCodeOutputLogsObject),
    Image(RunStepDetailsToolCallsCodeOutputImageObject),
}Variants§
Logs(RunStepDetailsToolCallsCodeOutputLogsObject)
Code interpreter log output
Image(RunStepDetailsToolCallsCodeOutputImageObject)
Code interpreter image output
Trait Implementations§
Source§impl Clone for CodeInterpreterOutput
 
impl Clone for CodeInterpreterOutput
Source§fn clone(&self) -> CodeInterpreterOutput
 
fn clone(&self) -> CodeInterpreterOutput
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 CodeInterpreterOutput
 
impl Debug for CodeInterpreterOutput
Source§impl<'de> Deserialize<'de> for CodeInterpreterOutput
 
impl<'de> Deserialize<'de> for CodeInterpreterOutput
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 CodeInterpreterOutput
 
impl PartialEq for CodeInterpreterOutput
Source§impl Serialize for CodeInterpreterOutput
 
impl Serialize for CodeInterpreterOutput
impl StructuralPartialEq for CodeInterpreterOutput
Auto Trait Implementations§
impl Freeze for CodeInterpreterOutput
impl RefUnwindSafe for CodeInterpreterOutput
impl Send for CodeInterpreterOutput
impl Sync for CodeInterpreterOutput
impl Unpin for CodeInterpreterOutput
impl UnwindSafe for CodeInterpreterOutput
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