[][src]Struct carapax::prelude::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: i64,
    message_id: i64,
    user_id: i64,
    score: i64
) -> SetGameScore
[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>(
    inline_message_id: S,
    user_id: i64,
    score: i64
) -> SetGameScore where
    S: Into<String>, 
[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) -> SetGameScore[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) -> SetGameScore[src]

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

Trait Implementations

impl Serialize for SetGameScore[src]

impl Debug for SetGameScore[src]

impl Method for SetGameScore[src]

type Response = EditMessageResult

Type of successful result in API response

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