Struct tg_bot_models::Chat[][src]

pub struct Chat {
    pub id: i64,
    pub ty: String,
    pub title: Option<String>,
    pub username: Option<String>,
    pub first_name: Option<String>,
    pub last_name: Option<String>,
    pub all_members_are_administrators: Option<bool>,
    pub photo: Option<ChatPhoto>,
    pub description: Option<String>,
    pub invite_link: Option<String>,
    pub pinned_message: Option<Box<Message>>,
    pub sticker_set_name: Option<String>,
    pub can_set_sticker_set: Option<bool>,
}

This object represents a chat.

Fields

Unique identifier for this chat. This number may be greater than 32 bits and some programming languages may have difficulty/silent defects in interpreting it. But it is smaller than 52 bits, so a signed 64 bit integer or double-precision float type are safe for storing this identifier.

Type of chat, can be either “private”, “group”, “supergroup” or “channel”

Optional. Title, for supergroups, channels and group chats

Optional. Username, for private chats, supergroups and channels if available

Optional. First name of the other party in a private chat

Optional. Last name of the other party in a private chat

Optional. True if a group has ‘All Members Are Admins’ enabled.

Optional. Chat photo. Returned only in getChat.

Optional. Description, for supergroups and channel chats. Returned only in getChat.

Optional. Chat invite link, for supergroups and channel chats. Returned only in getChat.

Optional. Pinned message, for supergroups and channel chats. Returned only in getChat.

Optional. For supergroups, name of group sticker set. Returned only in getChat.

Optional. True, if the bot can change the group sticker set. Returned only in getChat.

Trait Implementations

impl Debug for Chat
[src]

Formats the value using the given formatter. Read more

impl Clone for Chat
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Chat
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl PartialOrd for Chat
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Auto Trait Implementations

impl Send for Chat

impl Sync for Chat