[][src]Struct egg_mode::place::Place

pub struct Place {
    pub id: String,
    pub attributes: HashMap<String, String>,
    pub bounding_box: Vec<(f64, f64)>,
    pub country: String,
    pub country_code: String,
    pub full_name: String,
    pub name: String,
    pub place_type: PlaceType,
    pub contained_within: Option<Vec<Place>>,
}

Represents a named location.

Fields

id: String

Alphanumeric ID of the location.

attributes: HashMap<String, String>

Map of miscellaneous information about this place. See Twitter's documentation for details and common attribute keys.

bounding_box: Vec<(f64, f64)>

A bounding box of latitude/longitude coordinates that encloses this place.

country: String

Name of the country containing this place.

country_code: String

Shortened country code representing the country containing this place.

full_name: String

Full human-readable name of this place.

name: String

Short human-readable name of this place.

place_type: PlaceType

The type of location represented by this place.

contained_within: Option<Vec<Place>>

If present, the country or administrative region that contains this place.

Trait Implementations

impl Clone for Place[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Place[src]

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

Auto Trait Implementations

impl Send for Place

impl Sync for Place

Blanket Implementations

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

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, 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> Erased for T

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

impl<T> Same<T> for T

type Output = T

Should always be Self