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

pub struct UpdateShortChatMessage {
    pub out: bool,
    pub mentioned: bool,
    pub media_unread: bool,
    pub silent: bool,
    pub id: int,
    pub from_id: int,
    pub chat_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 updateShortChatMessage

updateShortChatMessage#16812688 flags:# out:flags.1?true mentioned:flags.4?true media_unread:flags.5?true silent:flags.13?true id:int from_id:int chat_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 UpdateShortChatMessage
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateShortChatMessage
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl BareSerialize for UpdateShortChatMessage
[src]

impl BareDeserialize for UpdateShortChatMessage
[src]

impl IntoBoxed for UpdateShortChatMessage
[src]

[src]

Auto Trait Implementations