pub struct ResponseWebSearchCallInProgressEvent {
pub output_index: u64,
pub item_id: String,
pub sequence_number: u64,
}
Expand description
Emitted when a web search call is initiated.
Fields§
§output_index: u64
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.
sequence_number: u64
The sequence number of the web search call being processed.
Implementations§
Source§impl ResponseWebSearchCallInProgressEvent
impl ResponseWebSearchCallInProgressEvent
Sourcepub fn builder() -> ResponseWebSearchCallInProgressEventBuilder<((), (), ())>
pub fn builder() -> ResponseWebSearchCallInProgressEventBuilder<((), (), ())>
Create a builder for building ResponseWebSearchCallInProgressEvent
.
On the builder, call .output_index(...)
, .item_id(...)
, .sequence_number(...)
to set the values of the fields.
Finally, call .build()
to create the instance of ResponseWebSearchCallInProgressEvent
.
Trait Implementations§
Source§impl Clone for ResponseWebSearchCallInProgressEvent
impl Clone for ResponseWebSearchCallInProgressEvent
Source§fn clone(&self) -> ResponseWebSearchCallInProgressEvent
fn clone(&self) -> ResponseWebSearchCallInProgressEvent
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<'de> Deserialize<'de> for ResponseWebSearchCallInProgressEvent
impl<'de> Deserialize<'de> for ResponseWebSearchCallInProgressEvent
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ResponseWebSearchCallInProgressEvent
impl PartialEq for ResponseWebSearchCallInProgressEvent
Source§fn eq(&self, other: &ResponseWebSearchCallInProgressEvent) -> bool
fn eq(&self, other: &ResponseWebSearchCallInProgressEvent) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ResponseWebSearchCallInProgressEvent
Auto Trait Implementations§
impl Freeze for ResponseWebSearchCallInProgressEvent
impl RefUnwindSafe for ResponseWebSearchCallInProgressEvent
impl Send for ResponseWebSearchCallInProgressEvent
impl Sync for ResponseWebSearchCallInProgressEvent
impl Unpin for ResponseWebSearchCallInProgressEvent
impl UnwindSafe for ResponseWebSearchCallInProgressEvent
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