pub struct InlineQueryResultCachedAudio {
pub id: String,
pub audio_file_id: String,
pub caption: Option<String>,
pub parse_mode: Option<ParseMode>,
pub reply_markup: Option<InlineKeyboardMarkup>,
pub input_message_content: Option<InputMessageContent>,
}Fields§
§id: StringUnique identifier for this result, 1-64 Bytes
audio_file_id: StringA valid file identifier for the audio file
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.
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 InlineQueryResultCachedAudio
impl Debug for InlineQueryResultCachedAudio
Source§impl From<InlineQueryResultCachedAudio> for InlineQueryResult
impl From<InlineQueryResultCachedAudio> for InlineQueryResult
Source§fn from(audio: InlineQueryResultCachedAudio) -> InlineQueryResult
fn from(audio: InlineQueryResultCachedAudio) -> InlineQueryResult
Converts to this type from the input type.
Source§impl Serialize for InlineQueryResultCachedAudio
impl Serialize for InlineQueryResultCachedAudio
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
Auto Trait Implementations§
impl Freeze for InlineQueryResultCachedAudio
impl RefUnwindSafe for InlineQueryResultCachedAudio
impl Send for InlineQueryResultCachedAudio
impl Sync for InlineQueryResultCachedAudio
impl Unpin for InlineQueryResultCachedAudio
impl UnwindSafe for InlineQueryResultCachedAudio
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more