pub struct LocationPosition {
pub latitude_degrees: f64,
pub longitude_degrees: f64,
pub horizontal_accuracy: f64,
pub vertical_accuracy: f64,
}Fields§
§latitude_degrees: f64§longitude_degrees: f64§horizontal_accuracy: f64§vertical_accuracy: f64Trait Implementations§
Source§impl Clone for LocationPosition
impl Clone for LocationPosition
Source§fn clone(&self) -> LocationPosition
fn clone(&self) -> LocationPosition
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 Debug for LocationPosition
impl Debug for LocationPosition
Source§impl Default for LocationPosition
impl Default for LocationPosition
Source§fn default() -> LocationPosition
fn default() -> LocationPosition
Returns the “default value” for a type. Read more
Source§impl PartialEq for LocationPosition
impl PartialEq for LocationPosition
Source§fn eq(&self, other: &LocationPosition) -> bool
fn eq(&self, other: &LocationPosition) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for LocationPosition
impl StructuralPartialEq for LocationPosition
Auto Trait Implementations§
impl Freeze for LocationPosition
impl RefUnwindSafe for LocationPosition
impl Send for LocationPosition
impl Sync for LocationPosition
impl Unpin for LocationPosition
impl UnsafeUnpin for LocationPosition
impl UnwindSafe for LocationPosition
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