Struct telegram_bot_ars::types::InlineQueryResultVoice
source · pub struct InlineQueryResultVoice {
pub id: String,
pub voice_url: String,
pub title: String,
pub caption: Option<String>,
pub parse_mode: Option<ParseMode>,
pub audio_duration: Option<i64>,
pub reply_markup: Option<InlineKeyboardMarkup>,
pub input_message_content: Option<InputMessageContent>,
}Fields§
§id: StringUnique identifier for this result, 1-64 Bytes
voice_url: String§title: StringTitle of the result
caption: Option<String>Caption, 0-1024 characters
parse_mode: Option<ParseMode>Send Markdown or HTML, if you want Telegram apps to show bold, italic, fixed-width text or inline URLs in the media caption.
audio_duration: Option<i64>Audio duration in seconds
reply_markup: Option<InlineKeyboardMarkup>Inline keyboard attached to the message
input_message_content: Option<InputMessageContent>Content of the message to be sent
Trait Implementations§
source§impl Debug for InlineQueryResultVoice
impl Debug for InlineQueryResultVoice
source§impl From<InlineQueryResultVoice> for InlineQueryResult
impl From<InlineQueryResultVoice> for InlineQueryResult
source§fn from(voice: InlineQueryResultVoice) -> InlineQueryResult
fn from(voice: InlineQueryResultVoice) -> InlineQueryResult
Converts to this type from the input type.
source§impl Serialize for InlineQueryResultVoice
impl Serialize for InlineQueryResultVoice
source§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more