pub struct WebSearchToolCall {
pub id: String,
pub type: String,
pub status: String,
}
Expand description
The results of a web search tool call.
Fields§
§id: String
The unique ID of the web search tool call.
type: String
The type of the web search tool call.
status: String
The status of the web search tool call.
Trait Implementations§
Source§impl Clone for WebSearchToolCall
impl Clone for WebSearchToolCall
Source§fn clone(&self) -> WebSearchToolCall
fn clone(&self) -> WebSearchToolCall
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 Debug for WebSearchToolCall
impl Debug for WebSearchToolCall
Source§impl Default for WebSearchToolCall
impl Default for WebSearchToolCall
Source§fn default() -> WebSearchToolCall
fn default() -> WebSearchToolCall
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for WebSearchToolCall
impl RefUnwindSafe for WebSearchToolCall
impl Send for WebSearchToolCall
impl Sync for WebSearchToolCall
impl Unpin for WebSearchToolCall
impl UnwindSafe for WebSearchToolCall
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