[][src]Struct graph_rs_types::complextypes::DeviceGeoLocation

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: Stringlongitude: i64latitude: i64altitude: i64horizontal_accuracy: i64vertical_accuracy: i64heading: i64speed: i64

Trait Implementations

impl Eq for DeviceGeoLocation[src]

impl Clone for DeviceGeoLocation[src]

impl PartialEq<DeviceGeoLocation> for DeviceGeoLocation[src]

impl Debug for DeviceGeoLocation[src]

impl Serialize for DeviceGeoLocation[src]

impl<'de> Deserialize<'de> for DeviceGeoLocation[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]