[][src]Struct tgbot::types::ChatMemberAdministrator

pub struct ChatMemberAdministrator {
    pub user: User,
    pub can_be_edited: bool,
    pub can_change_info: bool,
    pub custom_title: Option<String>,
    pub can_post_messages: Option<bool>,
    pub can_edit_messages: Option<bool>,
    pub can_delete_messages: bool,
    pub can_invite_users: bool,
    pub can_restrict_members: bool,
    pub can_pin_messages: Option<bool>,
    pub can_promote_members: bool,
}

Chat admin

Fields

user: User

Information about the user

can_be_edited: bool

True, if the bot is allowed to edit administrator privileges of that user

can_change_info: bool

True, if the administrator can change the chat title, photo and other settings

custom_title: Option<String>

Custom title for this user

can_post_messages: Option<bool>

True, if the administrator can post in the channel, channels only

can_edit_messages: Option<bool>

True, if the administrator can edit messages of other users and can pin messages, channels only

can_delete_messages: bool

True, if the administrator can delete messages of other users

can_invite_users: bool

True, if the administrator can invite new users to the chat

can_restrict_members: bool

True, if the administrator can restrict, ban or unban chat members

can_pin_messages: Option<bool>

True, if the administrator can pin messages, groups and supergroups only

can_promote_members: bool

True, if the administrator can add new administrators with a subset of his own privileges or demote administrators that he has promoted, directly or indirectly (promoted by administrators that were appointed by the user)

Trait Implementations

impl Clone for ChatMemberAdministrator[src]

impl Debug for ChatMemberAdministrator[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.