pub struct WebSearchToolCall {
pub id: String,
pub status: WebSearchToolCallStatus,
}
Expand description
The results of a web search tool call. See the web search guide for more information.
Fields§
§id: String
The unique ID of the web search tool call.
status: WebSearchToolCallStatus
The status of the web search tool call.
Implementations§
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<'de> Deserialize<'de> for WebSearchToolCall
impl<'de> Deserialize<'de> for WebSearchToolCall
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 WebSearchToolCall
impl PartialEq for WebSearchToolCall
Source§impl Serialize for WebSearchToolCall
impl Serialize for WebSearchToolCall
impl StructuralPartialEq for WebSearchToolCall
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