[][src]Struct tgbot::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: Integer, chat_id: Integer, message_id: Integer) -> Self[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: Into<String>>(
    user_id: Integer,
    inline_message_id: S
) -> Self
[src]

Creates a new GetGameHighScores

Arguments

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

Trait Implementations

impl Clone 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 Serialize for GetGameHighScores[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> From<T> 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.