[][src]Struct tg_bot_models::InputTextMessageContent

pub struct InputTextMessageContent {
    pub message_text: String,
    pub parse_mode: Option<String>,
    pub disable_web_page_preview: Option<bool>,
}

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

Fields

message_text: String

Text of the message to be sent, 1-4096 characters

parse_mode: Option<String>

Optional. Send Markdown or HTML, if you want Telegram apps to show bold, italic, fixed-width text or inline URLs in your bot's message.

disable_web_page_preview: Option<bool>

Optional. Disables link previews for links in the sent message

Trait Implementations

impl PartialEq<InputTextMessageContent> for InputTextMessageContent[src]

impl Clone for InputTextMessageContent[src]

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

Performs copy-assignment from source. Read more

impl PartialOrd<InputTextMessageContent> for InputTextMessageContent[src]

impl Debug for InputTextMessageContent[src]

impl Serialize for InputTextMessageContent[src]

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

Auto Trait Implementations

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]