[][src]Struct carapax::prelude::ChatMemberRestricted

pub struct ChatMemberRestricted {
    pub user: User,
    pub until_date: i64,
    pub can_send_messages: bool,
    pub can_send_media_messages: bool,
    pub can_send_other_messages: bool,
    pub can_add_web_page_previews: bool,
}

Restricted user

Fields

user: User

Information about the user

until_date: i64

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

can_send_messages: bool

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

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

Trait Implementations

impl Debug for ChatMemberRestricted[src]

impl Clone for ChatMemberRestricted[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T