Struct google_games1::api::AchievementDefinition[][src]

pub struct AchievementDefinition {
    pub achievement_type: Option<String>,
    pub description: Option<String>,
    pub experience_points: Option<String>,
    pub formatted_total_steps: Option<String>,
    pub id: Option<String>,
    pub initial_state: Option<String>,
    pub is_revealed_icon_url_default: Option<bool>,
    pub is_unlocked_icon_url_default: Option<bool>,
    pub kind: Option<String>,
    pub name: Option<String>,
    pub revealed_icon_url: Option<String>,
    pub total_steps: Option<i32>,
    pub unlocked_icon_url: Option<String>,
}

An achievement definition object.

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

achievement_type: Option<String>

The type of the achievement.

description: Option<String>

The description of the achievement.

experience_points: Option<String>

Experience points which will be earned when unlocking this achievement.

formatted_total_steps: Option<String>

The total steps for an incremental achievement as a string.

id: Option<String>

The ID of the achievement.

initial_state: Option<String>

The initial state of the achievement.

is_revealed_icon_url_default: Option<bool>

Indicates whether the revealed icon image being returned is a default image, or is provided by the game.

is_unlocked_icon_url_default: Option<bool>

Indicates whether the unlocked icon image being returned is a default image, or is game-provided.

kind: Option<String>

Uniquely identifies the type of this resource. Value is always the fixed string games#achievementDefinition.

name: Option<String>

The name of the achievement.

revealed_icon_url: Option<String>

The image URL for the revealed achievement icon.

total_steps: Option<i32>

The total steps for an incremental achievement.

unlocked_icon_url: Option<String>

The image URL for the unlocked achievement icon.

Trait Implementations

impl Clone for AchievementDefinition[src]

impl Debug for AchievementDefinition[src]

impl Default for AchievementDefinition[src]

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

impl Resource for AchievementDefinition[src]

impl Serialize for AchievementDefinition[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> Instrument 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.