pub struct WebSearchOptionsUserLocationApproximate {
pub city: String,
pub country: String,
pub region: String,
pub timezone: String,
}Fields§
§city: StringFree text input for the city of the user, e.g. San Francisco.
country: StringThe two-letter ISO country code of
the user, e.g. US.
region: StringFree text input for the region of the user, e.g. California.
timezone: StringThe IANA timezone of the
user, e.g. America/Los_Angeles.
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 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for WebSearchOptionsUserLocationApproximate
impl RefUnwindSafe for WebSearchOptionsUserLocationApproximate
impl Send for WebSearchOptionsUserLocationApproximate
impl Sync for WebSearchOptionsUserLocationApproximate
impl Unpin 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