pub struct DeviceGeoLocation {
pub last_collected_date_time: String,
pub longitude: i64,
pub latitude: i64,
pub altitude: i64,
pub horizontal_accuracy: i64,
pub vertical_accuracy: i64,
pub heading: i64,
pub speed: i64,
}Fields§
§last_collected_date_time: String§longitude: i64§latitude: i64§altitude: i64§horizontal_accuracy: i64§vertical_accuracy: i64§heading: i64§speed: i64Trait Implementations§
Source§impl Clone for DeviceGeoLocation
impl Clone for DeviceGeoLocation
Source§fn clone(&self) -> DeviceGeoLocation
fn clone(&self) -> DeviceGeoLocation
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 DeviceGeoLocation
impl Debug for DeviceGeoLocation
Source§impl<'de> Deserialize<'de> for DeviceGeoLocation
impl<'de> Deserialize<'de> for DeviceGeoLocation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DeviceGeoLocation
impl PartialEq for DeviceGeoLocation
Source§impl Serialize for DeviceGeoLocation
impl Serialize for DeviceGeoLocation
impl Eq for DeviceGeoLocation
impl StructuralPartialEq for DeviceGeoLocation
Auto Trait Implementations§
impl Freeze for DeviceGeoLocation
impl RefUnwindSafe for DeviceGeoLocation
impl Send for DeviceGeoLocation
impl Sync for DeviceGeoLocation
impl Unpin for DeviceGeoLocation
impl UnwindSafe for DeviceGeoLocation
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