[][src]Struct carapax::prelude::methods::GetGameHighScores

pub struct GetGameHighScores { /* fields omitted */ }

Get data for high score tables

Will return the score of the specified user and several of his neighbors in a game This method will currently return scores for the target user, plus two of his closest neighbors on each side Will also return the top three users if the user and his neighbors are not among them Please note that this behavior is subject to change

Methods

impl GetGameHighScores[src]

pub fn new(user_id: i64, chat_id: i64, message_id: i64) -> GetGameHighScores[src]

Creates a new GetGameHighScores

Arguments

  • user_id - Target user id
  • chat_id - Unique identifier for the target chat
  • message_id - Identifier of the sent message

pub fn with_inline_message_id<S>(
    user_id: i64,
    inline_message_id: S
) -> GetGameHighScores where
    S: Into<String>, 
[src]

Creates a new GetGameHighScores

Arguments

  • user_id - Target user id
  • inline_message_id - Identifier of the inline message

Trait Implementations

impl Serialize for GetGameHighScores[src]

impl Debug for GetGameHighScores[src]

impl Method for GetGameHighScores[src]

type Response = Vec<GameHighScore>

Type of successful result in API response

impl Clone for GetGameHighScores[src]

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

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T