pub struct WebSearchContent {
pub results: Vec<WebSearchResultItem>,
}Expand description
Content returned by the server-side web search tool.
Fields§
§results: Vec<WebSearchResultItem>Trait Implementations§
Source§impl Clone for WebSearchContent
impl Clone for WebSearchContent
Source§fn clone(&self) -> WebSearchContent
fn clone(&self) -> WebSearchContent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WebSearchContent
impl Debug for WebSearchContent
Source§impl<'de> Deserialize<'de> for WebSearchContent
impl<'de> Deserialize<'de> for WebSearchContent
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 WebSearchContent
impl PartialEq for WebSearchContent
Source§fn eq(&self, other: &WebSearchContent) -> bool
fn eq(&self, other: &WebSearchContent) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for WebSearchContent
impl Serialize for WebSearchContent
impl StructuralPartialEq for WebSearchContent
Auto Trait Implementations§
impl Freeze for WebSearchContent
impl RefUnwindSafe for WebSearchContent
impl Send for WebSearchContent
impl Sync for WebSearchContent
impl Unpin for WebSearchContent
impl UnsafeUnpin for WebSearchContent
impl UnwindSafe for WebSearchContent
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