[][src]Struct google_games1::QuestCriterion

pub struct QuestCriterion {
    pub event_id: Option<String>,
    pub completion_contribution: Option<QuestContribution>,
    pub initial_player_progress: Option<QuestContribution>,
    pub kind: Option<String>,
    pub current_contribution: Option<QuestContribution>,
}

This is a JSON template for a Quest Criterion resource.

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

Fields

event_id: Option<String>

The ID of the event the criterion corresponds to.

completion_contribution: Option<QuestContribution>

The total number of times the associated event must be incremented for the player to complete this quest.

initial_player_progress: Option<QuestContribution>

The value of the event associated with this quest at the time that the quest was accepted. This value may change if event increments that took place before the start of quest are uploaded after the quest starts. There will be no initialPlayerProgress until the player has accepted the quest.

kind: Option<String>

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

current_contribution: Option<QuestContribution>

The number of increments the player has made toward the completion count event increments required to complete the quest. This value will not exceed the completion contribution. There will be no currentContribution until the player has accepted the quest.

Trait Implementations

impl Part for QuestCriterion[src]

impl Default for QuestCriterion[src]

impl Clone for QuestCriterion[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for QuestCriterion[src]

impl Serialize for QuestCriterion[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]