#[repr(u32)]pub enum Accuracy {
None = 0,
Country = 1,
City = 2,
Neighborhood = 3,
Street = 4,
Exact = 5,
}
Expand description
The accuracy of the location.
Variants§
None = 0
None.
Country = 1
Country.
City = 2
City.
Neighborhood = 3
Neighborhood.
Street = 4
Street.
Exact = 5
The exact location.
Trait Implementations§
impl Copy for Accuracy
impl Eq for Accuracy
impl StructuralPartialEq for Accuracy
Auto Trait Implementations§
impl Freeze for Accuracy
impl RefUnwindSafe for Accuracy
impl Send for Accuracy
impl Sync for Accuracy
impl Unpin for Accuracy
impl UnwindSafe for Accuracy
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