Struct clacks_mtproto::mtproto::chat::Chat [] [src]

pub struct Chat {
    pub creator: bool,
    pub kicked: bool,
    pub left: bool,
    pub admins_enabled: bool,
    pub admin: bool,
    pub deactivated: bool,
    pub id: int,
    pub title: string,
    pub photo: ChatPhoto,
    pub participants_count: int,
    pub date: int,
    pub version: int,
    pub migrated_to: Option<InputChannel>,
}

TL-derived from chat

chat#d91cdd54 flags:# creator:flags.0?true kicked:flags.1?true left:flags.2?true admins_enabled:flags.3?true admin:flags.4?true deactivated:flags.5?true id:int title:string photo:ChatPhoto participants_count:int date:int version:int migrated_to:flags.6?InputChannel = Chat;

Fields

Trait Implementations

impl Debug for Chat
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Chat
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl BareSerialize for Chat
[src]

impl BareDeserialize for Chat
[src]

impl IntoBoxed for Chat
[src]

[src]

Auto Trait Implementations

impl Send for Chat

impl Sync for Chat