pub struct GoogleSearchArguments {
pub queries: Option<Vec<String>>,
}Expand description
Arguments for Google search call
Fields§
§queries: Option<Vec<String>>Web search queries
Trait Implementations§
Source§impl Clone for GoogleSearchArguments
impl Clone for GoogleSearchArguments
Source§fn clone(&self) -> GoogleSearchArguments
fn clone(&self) -> GoogleSearchArguments
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 GoogleSearchArguments
impl Debug for GoogleSearchArguments
Source§impl<'de> Deserialize<'de> for GoogleSearchArguments
impl<'de> Deserialize<'de> for GoogleSearchArguments
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 GoogleSearchArguments
impl RefUnwindSafe for GoogleSearchArguments
impl Send for GoogleSearchArguments
impl Sync for GoogleSearchArguments
impl Unpin for GoogleSearchArguments
impl UnwindSafe for GoogleSearchArguments
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