[][src]Struct grammers_tl_types::types::MessageService

pub struct MessageService {
    pub out: bool,
    pub mentioned: bool,
    pub media_unread: bool,
    pub silent: bool,
    pub post: bool,
    pub legacy: bool,
    pub id: i32,
    pub from_id: Option<i32>,
    pub to_id: Peer,
    pub reply_to_msg_id: Option<i32>,
    pub date: i32,
    pub action: MessageAction,
}

Fields

out: boolmentioned: boolmedia_unread: boolsilent: boolpost: boollegacy: boolid: i32from_id: Option<i32>to_id: Peerreply_to_msg_id: Option<i32>date: i32action: MessageAction

Trait Implementations

impl Clone for MessageService[src]

impl Debug for MessageService[src]

impl Deserializable for MessageService[src]

impl From<MessageService> for Message[src]

impl Identifiable for MessageService[src]

impl PartialEq<MessageService> for MessageService[src]

impl Serializable for MessageService[src]

impl StructuralPartialEq for MessageService[src]

impl TryFrom<Message> for MessageService[src]

type Error = WrongVariant

The type returned in the event of a conversion error.

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.