pub struct DeviceTrackerLocation {
pub latitude: f32,
pub longitude: f32,
pub accuracy: Option<f32>,
}Fields§
§latitude: f32§longitude: f32§accuracy: Option<f32>Trait Implementations§
Source§impl Clone for DeviceTrackerLocation
impl Clone for DeviceTrackerLocation
Source§fn clone(&self) -> DeviceTrackerLocation
fn clone(&self) -> DeviceTrackerLocation
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 moreSource§impl Debug for DeviceTrackerLocation
impl Debug for DeviceTrackerLocation
impl Copy for DeviceTrackerLocation
Auto Trait Implementations§
impl Freeze for DeviceTrackerLocation
impl RefUnwindSafe for DeviceTrackerLocation
impl Send for DeviceTrackerLocation
impl Sync for DeviceTrackerLocation
impl Unpin for DeviceTrackerLocation
impl UnwindSafe for DeviceTrackerLocation
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