Struct clacks_mtproto::mtproto::chat_invite::ChatInvite [] [src]

pub struct ChatInvite {
    pub channel: bool,
    pub broadcast: bool,
    pub public: bool,
    pub megagroup: bool,
    pub title: string,
    pub photo: ChatPhoto,
    pub participants_count: int,
    pub participants: Option<Vector<Boxed, User>>,
}

TL-derived from chatInvite

chatInvite#db74f558 flags:# channel:flags.0?true broadcast:flags.1?true public:flags.2?true megagroup:flags.3?true title:string photo:ChatPhoto participants_count:int participants:flags.4?Vector<User> = ChatInvite;

Fields

Trait Implementations

impl Debug for ChatInvite
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ChatInvite
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl BareSerialize for ChatInvite
[src]

impl BareDeserialize for ChatInvite
[src]

impl IntoBoxed for ChatInvite
[src]

Auto Trait Implementations

impl Send for ChatInvite

impl Sync for ChatInvite