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

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>>,
}
Expand description

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.