[][src]Struct google_books1::GeolayerdataGeo

pub struct GeolayerdataGeo {
    pub country_code: Option<String>,
    pub zoom: Option<i32>,
    pub longitude: Option<f64>,
    pub map_type: Option<String>,
    pub latitude: Option<f64>,
    pub boundary: Option<Vec<String>>,
    pub viewport: Option<GeolayerdataGeoViewport>,
    pub cache_policy: Option<String>,
}

There is no detailed description.

This type is not used in any activity, and only used as part of another schema.

Fields

country_code: Option<String>

The country code of the location.

zoom: Option<i32>

The Zoom level to use for the map. Zoom levels between 0 (the lowest zoom level, in which the entire world can be seen on one map) to 21+ (down to individual buildings). See: https: //developers.google.com/maps/documentation/staticmaps/#Zoomlevels

longitude: Option<f64>

The longitude of the location.

map_type: Option<String>

The type of map that should be used for this location. EX: HYBRID, ROADMAP, SATELLITE, TERRAIN

latitude: Option<f64>

The latitude of the location.

boundary: Option<Vec<String>>

The boundary of the location as a set of loops containing pairs of latitude, longitude coordinates.

viewport: Option<GeolayerdataGeoViewport>

The viewport for showing this location. This is a latitude, longitude rectangle.

cache_policy: Option<String>

The cache policy active for this data. EX: UNRESTRICTED, RESTRICTED, NEVER

Trait Implementations

impl Clone for GeolayerdataGeo[src]

impl Debug for GeolayerdataGeo[src]

impl Default for GeolayerdataGeo[src]

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

impl NestedType for GeolayerdataGeo[src]

impl Part for GeolayerdataGeo[src]

impl Serialize for GeolayerdataGeo[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.

impl<T> Typeable for T where
    T: Any