pub struct DuckDuckGoSearchRequest {
pub q: String,
pub kl: Option<String>,
}Expand description
See: https://serpapi.com/duckduckgo-search-api#api-parameters
Fields§
§q: StringSee: https://serpapi.com/duckduckgo-search-api#api-parameters-search-query-q
kl: Option<String>See: https://serpapi.com/duckduckgo-search-api#api-parameters-localization-kl
Trait Implementations§
Source§impl Clone for DuckDuckGoSearchRequest
impl Clone for DuckDuckGoSearchRequest
Source§fn clone(&self) -> DuckDuckGoSearchRequest
fn clone(&self) -> DuckDuckGoSearchRequest
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 DuckDuckGoSearchRequest
impl Debug for DuckDuckGoSearchRequest
Source§impl Default for DuckDuckGoSearchRequest
impl Default for DuckDuckGoSearchRequest
Source§fn default() -> DuckDuckGoSearchRequest
fn default() -> DuckDuckGoSearchRequest
Returns the “default value” for a type. Read more
Source§impl FromStr for DuckDuckGoSearchRequest
impl FromStr for DuckDuckGoSearchRequest
Auto Trait Implementations§
impl Freeze for DuckDuckGoSearchRequest
impl RefUnwindSafe for DuckDuckGoSearchRequest
impl Send for DuckDuckGoSearchRequest
impl Sync for DuckDuckGoSearchRequest
impl Unpin for DuckDuckGoSearchRequest
impl UnsafeUnpin for DuckDuckGoSearchRequest
impl UnwindSafe for DuckDuckGoSearchRequest
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