[][src]Struct tgbot::methods::SetGameScore

pub struct SetGameScore { /* fields omitted */ }

Set the score of the specified user in a game

Returns an error, if the new score is not greater than the user's current score in the chat and force is False

Methods

impl SetGameScore[src]

pub fn new(
    chat_id: Integer,
    message_id: Integer,
    user_id: Integer,
    score: Integer
) -> Self
[src]

Creates a new SetGameScore

Arguments

  • chat_id - Unique identifier for the target chat
  • message_id - Identifier of the sent message
  • user_id - User identifier
  • score - New score, must be non-negative

pub fn with_inline_message_id<S: Into<String>>(
    inline_message_id: S,
    user_id: Integer,
    score: Integer
) -> Self
[src]

Creates a new SetGameScore

Arguments

  • inline_message_id - Identifier of the inline message
  • user_id - User identifier
  • score - New score, must be non-negative

pub fn force(self, force: bool) -> Self[src]

Pass True, if the high score is allowed to decrease

This can be useful when fixing mistakes or banning cheaters

pub fn disable_edit_message(self, disable_edit_message: bool) -> Self[src]

Pass True, if the game message should not be automatically edited to include the current scoreboard

Trait Implementations

impl Clone for SetGameScore[src]

impl Debug for SetGameScore[src]

impl Method for SetGameScore[src]

type Response = EditMessageResult

Type of successful result in API response

impl Serialize for SetGameScore[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.