[][src]Enum telegram_bot::types::inline_query_result::InputMessageContent

pub enum InputMessageContent {
    InputTextMessageContent(InputTextMessageContent),
    InputLocationMessageContent(InputLocationMessageContent),
    InputVenueMessageContent(InputVenueMessageContent),
    InputContactMessageContent(InputContactMessageContent),
}

This object represents the content of a message to be sent as a result of an inline query. Telegram clients currently support the following 4 types:

Variants

InputTextMessageContent(InputTextMessageContent)

Represents the content of a text message to be sent as the result of an inline query.

InputLocationMessageContent(InputLocationMessageContent)

Represents the content of a location message to be sent as the result of an inline query.

InputVenueMessageContent(InputVenueMessageContent)

Represents the content of a venue message to be sent as the result of an inline query.

InputContactMessageContent(InputContactMessageContent)

Represents the content of a contact message to be sent as the result of an inline query.

Trait Implementations

impl Debug for InputMessageContent[src]

impl From<InputContactMessageContent> for InputMessageContent[src]

impl From<InputLocationMessageContent> for InputMessageContent[src]

impl From<InputTextMessageContent> for InputMessageContent[src]

impl From<InputVenueMessageContent> for InputMessageContent[src]

impl Serialize for InputMessageContent[src]

Auto Trait Implementations

impl RefUnwindSafe for InputMessageContent[src]

impl Send for InputMessageContent[src]

impl Sync for InputMessageContent[src]

impl Unpin for InputMessageContent[src]

impl UnwindSafe for InputMessageContent[src]

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> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<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<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]