Struct hangouts_rs::PlaceV2[][src]

pub struct PlaceV2 {
    pub url: String,
    pub name: Option<String>,
    pub address: Address,
    pub geo: Geo,
    pub representative_image: RepresentativeImage,
    pub place_id: Option<String>,
    pub cluster_id: Option<String>,
    pub reference_id: Option<String>,
}

Data about a place_v2 item.

Fields

url: String

Google URL to the place.

name: Option<String>

Optional name of the place.

address: Address

Full postal address of the place.

geo: Geo

Coordinates of the place.

representative_image: RepresentativeImage

Data for a representative image of the place.

place_id: Option<String>cluster_id: Option<String>reference_id: Option<String>

Trait Implementations

impl Clone for PlaceV2[src]

impl Debug for PlaceV2[src]

impl From<PlaceV2> for PlaceV2[src]

impl PartialEq<PlaceV2> for PlaceV2[src]

impl StructuralPartialEq for PlaceV2[src]

Auto Trait Implementations

impl RefUnwindSafe for PlaceV2

impl Send for PlaceV2

impl Sync for PlaceV2

impl Unpin for PlaceV2

impl UnwindSafe for PlaceV2

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

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

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.