pub struct ResponseCodeInterpreterCallCodeDoneEvent {
    pub type: String,
    pub output_index: i64,
    pub code: String,
}Expand description
Emitted when code snippet output is finalized by the code interpreter.
Fields§
§type: StringThe type of the event.
output_index: i64The index of the output item that the code interpreter call is in progress.
code: StringThe final code snippet output by the code interpreter.
Trait Implementations§
Source§impl Clone for ResponseCodeInterpreterCallCodeDoneEvent
 
impl Clone for ResponseCodeInterpreterCallCodeDoneEvent
Source§fn clone(&self) -> ResponseCodeInterpreterCallCodeDoneEvent
 
fn clone(&self) -> ResponseCodeInterpreterCallCodeDoneEvent
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 Default for ResponseCodeInterpreterCallCodeDoneEvent
 
impl Default for ResponseCodeInterpreterCallCodeDoneEvent
Source§fn default() -> ResponseCodeInterpreterCallCodeDoneEvent
 
fn default() -> ResponseCodeInterpreterCallCodeDoneEvent
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ResponseCodeInterpreterCallCodeDoneEvent
impl RefUnwindSafe for ResponseCodeInterpreterCallCodeDoneEvent
impl Send for ResponseCodeInterpreterCallCodeDoneEvent
impl Sync for ResponseCodeInterpreterCallCodeDoneEvent
impl Unpin for ResponseCodeInterpreterCallCodeDoneEvent
impl UnwindSafe for ResponseCodeInterpreterCallCodeDoneEvent
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