pub struct GoogleSearchCitation {
pub url: String,
pub title: String,
}Expand description
A web source returned by Google grounding.
Fields§
§url: StringSource URL (may be a Google redirect link the user can follow).
title: StringSource title from the search result.
Trait Implementations§
Source§impl Clone for GoogleSearchCitation
impl Clone for GoogleSearchCitation
Source§fn clone(&self) -> GoogleSearchCitation
fn clone(&self) -> GoogleSearchCitation
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 GoogleSearchCitation
impl Debug for GoogleSearchCitation
Source§impl<'de> Deserialize<'de> for GoogleSearchCitation
impl<'de> Deserialize<'de> for GoogleSearchCitation
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
Auto Trait Implementations§
impl Freeze for GoogleSearchCitation
impl RefUnwindSafe for GoogleSearchCitation
impl Send for GoogleSearchCitation
impl Sync for GoogleSearchCitation
impl Unpin for GoogleSearchCitation
impl UnsafeUnpin for GoogleSearchCitation
impl UnwindSafe for GoogleSearchCitation
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