Struct clacks_mtproto::mtproto::updates::channel_difference::ChannelDifference [] [src]

pub struct ChannelDifference {
    pub final_: bool,
    pub pts: int,
    pub timeout: Option<int>,
    pub new_messages: Vector<Boxed, Message>,
    pub other_updates: Vector<Boxed, Update>,
    pub chats: Vector<Boxed, Chat>,
    pub users: Vector<Boxed, User>,
}

TL-derived from updates.channelDifference

updates.channelDifference#2064674e flags:# final:flags.0?true pts:int timeout:flags.1?int new_messages:Vector<Message> other_updates:Vector<Update> chats:Vector<Chat> users:Vector<User> = updates.ChannelDifference;

Fields

Trait Implementations

impl Debug for ChannelDifference
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ChannelDifference
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl BareSerialize for ChannelDifference
[src]

impl BareDeserialize for ChannelDifference
[src]

impl IntoBoxed for ChannelDifference
[src]

Auto Trait Implementations