[][src]Struct grammers_tl_types::functions::messages::EditMessage

pub struct EditMessage {
    pub no_webpage: bool,
    pub peer: InputPeer,
    pub id: i32,
    pub message: Option<String>,
    pub media: Option<InputMedia>,
    pub reply_markup: Option<ReplyMarkup>,
    pub entities: Option<Vec<MessageEntity>>,
    pub schedule_date: Option<i32>,
}

Fields

no_webpage: boolpeer: InputPeerid: i32message: Option<String>media: Option<InputMedia>reply_markup: Option<ReplyMarkup>entities: Option<Vec<MessageEntity>>schedule_date: Option<i32>

Trait Implementations

impl Clone for EditMessage[src]

impl Debug for EditMessage[src]

impl Identifiable for EditMessage[src]

impl PartialEq<EditMessage> for EditMessage[src]

impl RemoteCall for EditMessage[src]

type Return = Updates

The type of the "return" value coming from the other end of the connection. Read more

impl Serializable for EditMessage[src]

impl StructuralPartialEq for EditMessage[src]

Auto Trait Implementations

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> 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.