Struct clacks_mtproto::mtproto::updates::UpdateShortMessage [] [src]

pub struct UpdateShortMessage {
    pub out: bool,
    pub mentioned: bool,
    pub media_unread: bool,
    pub silent: bool,
    pub id: int,
    pub user_id: int,
    pub message: string,
    pub pts: int,
    pub pts_count: int,
    pub date: int,
    pub fwd_from: Option<MessageFwdHeader>,
    pub via_bot_id: Option<int>,
    pub reply_to_msg_id: Option<int>,
    pub entities: Option<Vector<Boxed, MessageEntity>>,
}

TL-derived from updateShortMessage

updateShortMessage#914fbf11 flags:# out:flags.1?true mentioned:flags.4?true media_unread:flags.5?true silent:flags.13?true id:int user_id:int message:string pts:int pts_count:int date:int fwd_from:flags.2?MessageFwdHeader via_bot_id:flags.11?int reply_to_msg_id:flags.3?int entities:flags.7?Vector<MessageEntity> = Updates;

Fields

Trait Implementations

impl Debug for UpdateShortMessage
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateShortMessage
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl BareSerialize for UpdateShortMessage
[src]

impl BareDeserialize for UpdateShortMessage
[src]

impl IntoBoxed for UpdateShortMessage
[src]

[src]

Auto Trait Implementations