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