Struct twitter_stream::place::Place
[−]
[src]
pub struct Place {
pub attributes: Attributes,
pub bounding_box: Geometry,
pub country: String,
pub country_code: String,
pub full_name: String,
pub id: PlaceId,
pub name: String,
pub place_type: String,
pub url: String,
}Fields
attributes: Attributes
Contains a hash of variant information about the place. See Place Attributes for more detail.
bounding_box: Geometry
A bounding box of coordinates which 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 representation of the place’s name.
id: PlaceId
ID representing this place. Note that this is represented as a string, not an integer.
name: String
Short human-readable representation of the place’s name.
place_type: String
The type of location represented by this place.
url: String
URL representing the location of additional place metadata for this place.
Trait Implementations
impl Clone for Place[src]
fn clone(&self) -> Place
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more