[][src]Struct tweet::Place

pub struct Place {
    pub id: String,
    pub url: String,
    pub place_type: String,
    pub name: String,
    pub full_name: String,
    pub country_code: String,
    pub country: String,
    pub bounding_box: BoundingBox,
}

Represents a specific named location corresponding with geo coordinates

Fields

id: String

Unique id representing this place

url: String

URL representing location of additional place metadata

place_type: String

Type of location represented by this place

name: String

Short, human-readable place name

full_name: String

Full, human-readable place name

country_code: String

Country code that this place is located in

country: String

Country that this place is located in

bounding_box: BoundingBox

A bounding box containing the coordinates which enclose this place

Trait Implementations

impl Debug for Place[src]

impl Serialize 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, 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]