[][src]Struct telexide::model::Game

pub struct Game {
    pub title: String,
    pub description: String,
    pub photo: Vec<PhotoSize>,
    pub text: Option<String>,
    pub text_entities: Option<Vec<MessageEntity>>,
    pub animation: Option<Animation>,
}

This object represents a game. Use @BotFather to create and edit games, their short names will act as unique identifiers.

Fields

title: String

Title of the game

description: String

Description of the game

photo: Vec<PhotoSize>

Photo that will be displayed in the game message in chats.

text: Option<String>

Brief description of the game or high scores included in the game message. Can be automatically edited to include current high scores for the game when the bot calls set_game_score, or manually edited using edit_message_text. 0-4096 characters.

text_entities: Option<Vec<MessageEntity>>

Special entities that appear in text, such as usernames, URLs, bot commands, etc.

animation: Option<Animation>

Animation that will be displayed in the game message in chats. Upload via BotFather

Trait Implementations

impl Clone for Game[src]

impl Debug for Game[src]

impl<'de> Deserialize<'de> for Game[src]

impl PartialEq<Game> for Game[src]

impl Serialize for Game[src]

impl StructuralPartialEq for Game[src]

Auto Trait Implementations

impl RefUnwindSafe for Game

impl Send for Game

impl Sync for Game

impl Unpin for Game

impl UnwindSafe for Game

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> CloneAny for T where
    T: Clone + Any
[src]

impl<T> DebugAny for T where
    T: Any + Debug
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.

impl<T> UnsafeAny for T where
    T: Any