[][src]Struct google_mybusiness4::GoogleLocation

pub struct GoogleLocation {
    pub request_admin_rights_url: Option<String>,
    pub name: Option<String>,
    pub location: Option<Location>,
}

Represents a Location that is present on Google. This can be a location that has been claimed by the user, someone else, or could be unclaimed.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

request_admin_rights_url: Option<String>

A URL that will redirect the user to the request admin rights UI. This field is only present if the location has already been claimed by any user, including the current user.

name: Option<String>

Resource name of this GoogleLocation, in the format googleLocations/{googleLocationId}.

location: Option<Location>

The sparsely populated Location information. This field can be re-used in CreateLocation if it is not currently claimed by a user.

Trait Implementations

impl Clone for GoogleLocation[src]

impl Debug for GoogleLocation[src]

impl Default for GoogleLocation[src]

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

impl Resource for GoogleLocation[src]

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