Struct clacks_mtproto::mtproto::channel_banned_rights::ChannelBannedRights [] [src]

pub struct ChannelBannedRights {
    pub view_messages: bool,
    pub send_messages: bool,
    pub send_media: bool,
    pub send_stickers: bool,
    pub send_gifs: bool,
    pub send_games: bool,
    pub send_inline: bool,
    pub embed_links: bool,
    pub until_date: int,
}

TL-derived from channelBannedRights

channelBannedRights#58cf4249 flags:# view_messages:flags.0?true send_messages:flags.1?true send_media:flags.2?true send_stickers:flags.3?true send_gifs:flags.4?true send_games:flags.5?true send_inline:flags.6?true embed_links:flags.7?true until_date:int = ChannelBannedRights;

Fields

Trait Implementations

impl Debug for ChannelBannedRights
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ChannelBannedRights
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl BareSerialize for ChannelBannedRights
[src]

impl BareDeserialize for ChannelBannedRights
[src]

impl IntoBoxed for ChannelBannedRights
[src]

Auto Trait Implementations