[][src]Struct locationsharing::Location

pub struct Location {
    pub person: Person,
    pub latitude: f64,
    pub longitude: f64,
    pub address: Option<String>,
    pub timestamp: Option<DateTime<Utc>>,
    pub battery: Option<u8>,
}

One shared location

Fields

person: Person

The person represented by this location

latitude: f64longitude: f64address: Option<String>

The best guess as to the person's address

timestamp: Option<DateTime<Utc>>

When the location was last updated

battery: Option<u8>

The user's phone's battery, from 0 to 100

Trait Implementations

impl PartialEq<Location> for Location[src]

impl Default for Location[src]

impl Debug for Location[src]

Auto Trait Implementations

impl Send for Location

impl Sync for Location

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T