pub struct ResponseFunctionCallArgumentsDoneEvent {
pub type: String,
pub item_id: String,
pub output_index: i64,
pub arguments: String,
}Expand description
Emitted when function-call arguments are finalized.
Fields§
§type: String§item_id: StringThe ID of the item.
output_index: i64The index of the output item.
arguments: StringThe function-call arguments.
Trait Implementations§
Source§impl Clone for ResponseFunctionCallArgumentsDoneEvent
impl Clone for ResponseFunctionCallArgumentsDoneEvent
Source§fn clone(&self) -> ResponseFunctionCallArgumentsDoneEvent
fn clone(&self) -> ResponseFunctionCallArgumentsDoneEvent
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 ResponseFunctionCallArgumentsDoneEvent
impl Default for ResponseFunctionCallArgumentsDoneEvent
Source§fn default() -> ResponseFunctionCallArgumentsDoneEvent
fn default() -> ResponseFunctionCallArgumentsDoneEvent
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ResponseFunctionCallArgumentsDoneEvent
impl RefUnwindSafe for ResponseFunctionCallArgumentsDoneEvent
impl Send for ResponseFunctionCallArgumentsDoneEvent
impl Sync for ResponseFunctionCallArgumentsDoneEvent
impl Unpin for ResponseFunctionCallArgumentsDoneEvent
impl UnwindSafe for ResponseFunctionCallArgumentsDoneEvent
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