[][src]Struct google_playablelocations3::GoogleMapsPlayablelocationsV3PlayerReport

pub struct GoogleMapsPlayablelocationsV3PlayerReport {
    pub location_name: Option<String>,
    pub language_code: Option<String>,
    pub reason_details: Option<String>,
    pub reasons: Option<Vec<String>>,
}

A report submitted by a player about a playable location that is considered inappropriate for use in the game.

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

Fields

location_name: Option<String>

Required. The name of the playable location.

language_code: Option<String>

Language code (in BCP-47 format) indicating the language of the freeform description provided in reason_details. Examples are "en", "en-US" or "ja-Latn". For more information, see http://www.unicode.org/reports/tr35/#Unicode_locale_identifier.

reason_details: Option<String>

Required. A free-form description detailing why the playable location is considered bad.

reasons: Option<Vec<String>>

Required. One or more reasons why this playable location is considered bad.

Trait Implementations

impl Clone for GoogleMapsPlayablelocationsV3PlayerReport[src]

impl Debug for GoogleMapsPlayablelocationsV3PlayerReport[src]

impl Default for GoogleMapsPlayablelocationsV3PlayerReport[src]

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

impl Part for GoogleMapsPlayablelocationsV3PlayerReport[src]

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