[][src]Struct telexide::model::Message

pub struct Message {
    pub message_id: i64,
    pub from: Option<User>,
    pub date: DateTime<Utc>,
    pub chat: Chat,
    pub forward_data: Option<ForwardData>,
    pub reply_to_message: Option<Box<Message>>,
    pub edit_date: Option<DateTime<Utc>>,
    pub author_signature: Option<String>,
    pub content: MessageContent,
    pub connected_website: Option<String>,
    pub passport_data: Option<PassportData>,
    pub reply_markup: Option<InlineKeyboardMarkup>,
}

This object represents a message.

Fields

message_id: i64

Unique message identifier inside this chat

from: Option<User>

Sender, empty for messages sent to channels

date: DateTime<Utc>

Date the message was sent

chat: Chat

Conversation the message belongs to

forward_data: Option<ForwardData>

Data about what message it was forwarded from

reply_to_message: Option<Box<Message>>

For replies, the original message. Note that the Message object in this field will not contain further reply_to_message fields even if it itself is a reply.

edit_date: Option<DateTime<Utc>>

Date the message was last edited in Unix time

author_signature: Option<String>

Signature of the post author for messages in channels

content: MessageContent

The content of the message

connected_website: Option<String>

The domain name of the website on which the user has logged in.

passport_data: Option<PassportData>

Telegram Passport data

reply_markup: Option<InlineKeyboardMarkup>

Inline keyboard attached to the message. login_url buttons are represented as ordinary url buttons.

Methods

impl Message[src]

pub fn get_text(&self) -> Option<String>[src]

Trait Implementations

impl Clone for Message[src]

impl Debug for Message[src]

impl<'de> Deserialize<'de> for Message[src]

impl From<Message> for RawMessage[src]

impl From<RawMessage> for Message[src]

impl PartialEq<Message> for Message[src]

impl Serialize for Message[src]

impl StructuralPartialEq for Message[src]

Auto Trait Implementations

impl RefUnwindSafe for Message

impl Send for Message

impl Sync for Message

impl Unpin for Message

impl UnwindSafe for Message

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CloneAny for T where
    T: Clone + Any
[src]

impl<T> DebugAny for T where
    T: Any + Debug
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> UnsafeAny for T where
    T: Any