pub struct WebSearchOptionsUserLocationApproximate {
pub city: Option<String>,
pub country: Option<String>,
pub region: Option<String>,
pub timezone: Option<String>,
}Expand description
Approximate location parameters for the search.
Fields§
§city: Option<String>Free text input for the city of the user, e.g. San Francisco.
country: Option<String>The two-letter ISO country code of
region: Option<String>Free text input for the region of the user, e.g. California.
timezone: Option<String>The IANA timezone of the
Trait Implementations§
Source§impl Clone for WebSearchOptionsUserLocationApproximate
impl Clone for WebSearchOptionsUserLocationApproximate
Source§fn clone(&self) -> WebSearchOptionsUserLocationApproximate
fn clone(&self) -> WebSearchOptionsUserLocationApproximate
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<'de> Deserialize<'de> for WebSearchOptionsUserLocationApproximate
impl<'de> Deserialize<'de> for WebSearchOptionsUserLocationApproximate
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 WebSearchOptionsUserLocationApproximate
impl RefUnwindSafe for WebSearchOptionsUserLocationApproximate
impl Send for WebSearchOptionsUserLocationApproximate
impl Sync for WebSearchOptionsUserLocationApproximate
impl Unpin for WebSearchOptionsUserLocationApproximate
impl UnsafeUnpin for WebSearchOptionsUserLocationApproximate
impl UnwindSafe for WebSearchOptionsUserLocationApproximate
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