[][src]Struct carapax::prelude::types::InlineQueryResultCachedVoice

pub struct InlineQueryResultCachedVoice { /* fields omitted */ }

Link to a voice message stored on the Telegram servers

By default, this voice message will be sent by the user Alternatively, you can use input_message_content to send a message with the specified content instead of the voice message

Methods

impl InlineQueryResultCachedVoice[src]

pub fn new<S>(id: S, voice_file_id: S, title: S) -> InlineQueryResultCachedVoice where
    S: Into<String>, 
[src]

Creates a new InlineQueryResultCachedVoice with empty optional parameters

Arguments

  • id - Unique identifier for this result, 1-64 bytes
  • voice_file_id - A valid file identifier for the voice message
  • title - Title for the result

pub fn caption<S>(self, caption: S) -> InlineQueryResultCachedVoice where
    S: Into<String>, 
[src]

Caption, 0-1024 characters

pub fn parse_mode(self, parse_mode: ParseMode) -> InlineQueryResultCachedVoice[src]

Parse mode

pub fn reply_markup<I>(self, reply_markup: I) -> InlineQueryResultCachedVoice where
    I: Into<InlineKeyboardMarkup>, 
[src]

Inline keyboard attached to the message

pub fn input_message_content(
    self,
    input_message_content: InputMessageContent
) -> InlineQueryResultCachedVoice
[src]

Content of the message to be sent instead of the voice message

Trait Implementations

impl From<InlineQueryResultCachedVoice> for InlineQueryResult[src]

impl Serialize for InlineQueryResultCachedVoice[src]

impl Debug for InlineQueryResultCachedVoice[src]

impl Clone for InlineQueryResultCachedVoice[src]

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

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T