[][src]Struct google_blogger3::PostLocation

pub struct PostLocation {
    pub lat: Option<f64>,
    pub lng: Option<f64>,
    pub span: Option<String>,
    pub name: Option<String>,
}

The location for geotagged posts.

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

Fields

lat: Option<f64>

Location's latitude.

lng: Option<f64>

Location's longitude.

span: Option<String>

Location's viewport span. Can be used when rendering a map preview.

name: Option<String>

Location name.

Trait Implementations

impl Clone for PostLocation[src]

impl Debug for PostLocation[src]

impl Default for PostLocation[src]

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

impl NestedType for PostLocation[src]

impl Part for PostLocation[src]

impl Serialize for PostLocation[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