Struct telexide::model::ChatPermissions[][src]

pub struct ChatPermissions {
    pub can_send_messages: bool,
    pub can_send_media_messages: bool,
    pub can_send_polls: bool,
    pub can_send_other_messages: bool,
    pub can_add_web_page_previews: bool,
    pub can_change_info: bool,
    pub can_invite_users: bool,
    pub can_pin_messages: bool,
}

Describes actions that a non-administrator user is allowed to take in a chat.

Fields

can_send_messages: bool

True, if the user is allowed to send text messages, contacts, locations and venues.

can_send_media_messages: bool

True, if the user is allowed to send audios, documents, photos, videos, video notes and voice notes, implies can_send_messages to be true.

can_send_polls: bool

True, if the user is allowed to send polls, implies can_send_messages to be true.

can_send_other_messages: bool

True, if the user is allowed to send animations, games, stickers and use inline bots, implies can_send_media_messages to be true.

can_add_web_page_previews: bool

True, if the user is allowed to add web page previews to their messages, implies can_send_media_messages to be true.

can_change_info: bool

True, if the user is allowed to change the chat title, photo and other settings. Ignored in public supergroups.

can_invite_users: bool

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

can_pin_messages: bool

True, if the user is allowed to pin messages. Ignored in public supergroups.

Trait Implementations

impl Clone for ChatPermissions[src]

impl Debug for ChatPermissions[src]

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

impl PartialEq<ChatPermissions> for ChatPermissions[src]

impl Serialize for ChatPermissions[src]

impl StructuralPartialEq for ChatPermissions[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> CloneAny for T where
    T: Any + Clone
[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> Instrument 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