[][src]Struct google_games1::ParticipantResult

pub struct ParticipantResult {
    pub kind: Option<String>,
    pub placing: Option<i32>,
    pub participant_id: Option<String>,
    pub result: Option<String>,
}

This is a JSON template for a result for a match participant.

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

Fields

kind: Option<String>

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

placing: Option<i32>

The placement or ranking of the participant in the match results; a number from one to the number of participants in the match. Multiple participants may have the same placing value in case of a type.

participant_id: Option<String>

The ID of the participant.

result: Option<String>

The result of the participant for this match. Possible values are:

  • "MATCH_RESULT_WIN" - The participant won the match.
  • "MATCH_RESULT_LOSS" - The participant lost the match.
  • "MATCH_RESULT_TIE" - The participant tied the match.
  • "MATCH_RESULT_NONE" - There was no winner for the match (nobody wins or loses this kind of game.)
  • "MATCH_RESULT_DISCONNECT" - The participant disconnected / left during the match.
  • "MATCH_RESULT_DISAGREED" - Different clients reported different results for this participant.

Trait Implementations

impl Part for ParticipantResult[src]

impl Default for ParticipantResult[src]

impl Clone for ParticipantResult[src]

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

Performs copy-assignment from source. Read more

impl Debug for ParticipantResult[src]

impl Serialize for ParticipantResult[src]

impl<'de> Deserialize<'de> for ParticipantResult[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]