pub struct LocationBuilder { /* private fields */ }
Expand description
Builder for Location
.
Implementations§
Source§impl LocationBuilder
impl LocationBuilder
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 LocationBuilder
impl Clone for LocationBuilder
Source§fn clone(&self) -> LocationBuilder
fn clone(&self) -> LocationBuilder
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 LocationBuilder
impl RefUnwindSafe for LocationBuilder
impl Send for LocationBuilder
impl Sync for LocationBuilder
impl Unpin for LocationBuilder
impl UnwindSafe for LocationBuilder
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