[][src]Struct tgbot::types::ChatMemberRestricted

pub struct ChatMemberRestricted {
    pub user: User,
    pub until_date: Integer,
    pub can_change_info: bool,
    pub can_invite_users: bool,
    pub can_pin_messages: Option<bool>,
    pub can_send_messages: bool,
    pub can_send_polls: bool,
    pub can_send_media_messages: bool,
    pub can_send_other_messages: bool,
    pub can_add_web_page_previews: bool,
    pub is_member: bool,
}

Restricted user

Fields

user: User

Information about the user

until_date: Integer

Date when restrictions will be lifted for this user, unix time

can_change_info: bool

True, if the user allowed to change the chat title, photo and other settings

can_invite_users: bool

True, if the user allowed to invite new users to the chat

can_pin_messages: Option<bool>

True, if the user allowed to pin messages, groups and supergroups only

can_send_messages: bool

True, if the user can send text messages, contacts, locations and venues

can_send_polls: bool

True, if the user is allowed to send polls

can_send_media_messages: bool

True, if the user can send audios, documents, photos, videos, video notes and voice notes, implies can_send_messages

can_send_other_messages: bool

True, if the user can send animations, games, stickers and use inline bots, implies can_send_media_messages

can_add_web_page_previews: bool

True, if user may add web page previews to his messages, implies can_send_media_messages

is_member: bool

True, if the user is a member of the chat at the moment of the request

Trait Implementations

impl Clone for ChatMemberRestricted[src]

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