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