[][src]Struct carapax::prelude::methods::SendVoice

pub struct SendVoice { /* fields omitted */ }

Send audio files, if you want Telegram clients to display the file as a playable voice message

For this to work, your audio must be in an .ogg file encoded with OPUS (other formats may be sent as Audio or Document) Bots can currently send voice messages of up to 50 MB in size, this limit may be changed in the future

Methods

impl SendVoice[src]

pub fn new<C, S>(chat_id: C, voice: S) -> SendVoice where
    C: Into<ChatId>,
    S: Into<String>, 
[src]

Creates a new SendVoice with empty optional parameters

Arguments

  • chat_id - Unique identifier for the target chat
  • voice - Audio file to send Pass a file_id as String to send a file that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get a file from the Internet, or upload a new one using multipart/form-data

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

Voice message caption, 0-1024 characters

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

Sets a parse mode

pub fn duration(self, duration: i64) -> SendVoice[src]

Duration of the voice message in seconds

pub fn disable_notification(self, disable_notification: bool) -> SendVoice[src]

Users will receive a notification with no sound

pub fn reply_to_message_id(self, reply_to_message_id: i64) -> SendVoice[src]

If the message is a reply, ID of the original message

pub fn reply_markup<R>(self, reply_markup: R) -> SendVoice where
    R: Into<ReplyMarkup>, 
[src]

Additional interface options

Trait Implementations

impl Serialize for SendVoice[src]

impl Debug for SendVoice[src]

impl Method for SendVoice[src]

type Response = Message

Type of successful result in API response

impl Clone for SendVoice[src]

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

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for SendVoice

impl Sync for SendVoice

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