pub struct LocationArgs { /* private fields */ }
Expand description
Builder for Location
.
Implementations§
Source§impl LocationArgs
impl LocationArgs
Sourcepub fn kind<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn kind<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
The type of location approximation. Always approximate.
Sourcepub fn city<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn city<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
Free text input for the city of the user, e.g. San Francisco.
Sourcepub fn country<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn country<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
The two-letter ISO country code of the user, e.g. US.
Sourcepub fn region<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn region<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
Free text input for the region of the user, e.g. California.
Trait Implementations§
Source§impl Clone for LocationArgs
impl Clone for LocationArgs
Source§fn clone(&self) -> LocationArgs
fn clone(&self) -> LocationArgs
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 LocationArgs
impl RefUnwindSafe for LocationArgs
impl Send for LocationArgs
impl Sync for LocationArgs
impl Unpin for LocationArgs
impl UnwindSafe for LocationArgs
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