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