[][src]Struct tgbot::methods::SendGame

pub struct SendGame { /* fields omitted */ }

Use this method to send a game

Methods

impl SendGame[src]

pub fn new<S: Into<String>>(chat_id: Integer, game_short_name: S) -> Self[src]

Creates a new SendGame with empty optional parameters

Arguments

  • chat_id - Unique identifier for the target chat
  • game_short_name - Short name of the game, serves as the unique identifier for the game

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

Sends the message silently

Users will receive a notification with no sound

pub fn reply_to_message_id(self, reply_to_message_id: Integer) -> Self[src]

If the message is a reply, ID of the original message

pub fn reply_markup<I: Into<InlineKeyboardMarkup>>(
    self,
    reply_markup: I
) -> Self
[src]

Additional interface options

Trait Implementations

impl Clone for SendGame[src]

impl Debug for SendGame[src]

impl Method for SendGame[src]

type Response = Message

Type of successful result in API response

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