[][src]Struct rtdlib::types::Message

pub struct Message { /* fields omitted */ }

Describes a message.

Methods

impl Message[src]

pub fn builder(
) -> TypedBuilder_BuilderFor_Message<(), (), (), (), (), (), (), (), (), (), (), (), (), (), (), (), (), (), (), (), (), (), (), ()>
[src]

Create a builder for building Message. On the builder, call .td_name(...)(optional), .id(...)(optional), .sender_user_id(...)(optional), .chat_id(...)(optional), .sending_state(...)(optional), .is_outgoing(...)(optional), .can_be_edited(...)(optional), .can_be_forwarded(...)(optional), .can_be_deleted_only_for_self(...)(optional), .can_be_deleted_for_all_users(...)(optional), .is_channel_post(...)(optional), .contains_unread_mention(...)(optional), .date(...)(optional), .edit_date(...)(optional), .forward_info(...)(optional), .reply_to_message_id(...)(optional), .ttl(...)(optional), .ttl_expires_in(...)(optional), .via_bot_user_id(...)(optional), .author_signature(...)(optional), .views(...)(optional), .media_album_id(...)(optional), .content(...)(optional), .reply_markup(...)(optional) to set the values of the fields(they accept Into values). Finally, call .build() to create the instance of Message.

impl Message[src]

pub fn id(&self) -> Option<i64>[src]

pub fn sender_user_id(&self) -> Option<i32>[src]

pub fn chat_id(&self) -> Option<i64>[src]

pub fn sending_state(&self) -> Option<Box<dyn MessageSendingState>>[src]

pub fn is_outgoing(&self) -> Option<bool>[src]

pub fn can_be_edited(&self) -> Option<bool>[src]

pub fn can_be_forwarded(&self) -> Option<bool>[src]

pub fn can_be_deleted_only_for_self(&self) -> Option<bool>[src]

pub fn can_be_deleted_for_all_users(&self) -> Option<bool>[src]

pub fn is_channel_post(&self) -> Option<bool>[src]

pub fn contains_unread_mention(&self) -> Option<bool>[src]

pub fn date(&self) -> Option<i32>[src]

pub fn edit_date(&self) -> Option<i32>[src]

pub fn forward_info(&self) -> Option<MessageForwardInfo>[src]

pub fn reply_to_message_id(&self) -> Option<i64>[src]

pub fn ttl(&self) -> Option<i32>[src]

pub fn ttl_expires_in(&self) -> Option<f64>[src]

pub fn via_bot_user_id(&self) -> Option<i32>[src]

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

pub fn views(&self) -> Option<i32>[src]

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

pub fn content(&self) -> Option<Box<dyn MessageContent>>[src]

pub fn reply_markup(&self) -> Option<Box<dyn ReplyMarkup>>[src]

pub fn from_json<S: AsRef<str>>(json: S) -> Option<Self>[src]

Trait Implementations

impl RObject for Message[src]

impl Object for Message[src]

impl Clone for Message[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Message[src]

impl Serialize for Message[src]

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

Auto Trait Implementations

impl !Send for Message

impl !Sync for Message

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

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

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