[][src]Struct kahoot::message::GameOverMessage

pub struct GameOverMessage {
    pub rank: u64,
    pub cid: String,
    pub correct_count: u64,
    pub incorrect_count: u64,
    pub is_kicked: bool,
    pub is_ghost: bool,
    pub unanswered_count: u64,
    pub player_count: u64,
    pub start_time: u64,
    pub quiz_id: String,
    pub name: String,
    pub total_score: u64,
    pub host_id: String,
    pub is_only_non_point_game_block_kahoot: bool,
    pub extra: HashMap<String, Value>,
    // some fields omitted
}

Fields

rank: u64cid: Stringcorrect_count: u64incorrect_count: u64is_kicked: boolis_ghost: boolunanswered_count: u64player_count: u64start_time: u64quiz_id: Stringname: Stringtotal_score: u64host_id: Stringis_only_non_point_game_block_kahoot: boolextra: HashMap<String, Value>

Trait Implementations

impl Debug for GameOverMessage[src]

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

Auto Trait Implementations

impl RefUnwindSafe for GameOverMessage

impl Send for GameOverMessage

impl Sync for GameOverMessage

impl Unpin for GameOverMessage

impl UnwindSafe for GameOverMessage

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> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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<V, T> VZip<V> for T where
    V: MultiLane<T>,