pub struct WebSearchCallOutput {
pub id: String,
pub status: String,
}
Expand description
Web search tool call output.
Fields§
§id: String
The unique ID of the web search tool call.
status: String
The status of the web search tool call.
Trait Implementations§
Source§impl Clone for WebSearchCallOutput
impl Clone for WebSearchCallOutput
Source§fn clone(&self) -> WebSearchCallOutput
fn clone(&self) -> WebSearchCallOutput
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 WebSearchCallOutput
impl Debug for WebSearchCallOutput
Source§impl<'de> Deserialize<'de> for WebSearchCallOutput
impl<'de> Deserialize<'de> for WebSearchCallOutput
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 WebSearchCallOutput
impl PartialEq for WebSearchCallOutput
Source§impl Serialize for WebSearchCallOutput
impl Serialize for WebSearchCallOutput
impl StructuralPartialEq for WebSearchCallOutput
Auto Trait Implementations§
impl Freeze for WebSearchCallOutput
impl RefUnwindSafe for WebSearchCallOutput
impl Send for WebSearchCallOutput
impl Sync for WebSearchCallOutput
impl Unpin for WebSearchCallOutput
impl UnwindSafe for WebSearchCallOutput
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