[][src]Struct rutebot::requests::InputMediaAudio

pub struct InputMediaAudio<'a> {
    pub media: FileKind<'a>,
    pub thumb: Option<Vec<u8>>,
    pub caption: Option<&'a str>,
    pub parse_mode: Option<ParseMode>,
    pub duration: Option<i64>,
    pub performer: Option<&'a str>,
    pub title: Option<&'a str>,
}

Represents an audio file to be treated as music to be sent.

Fields

media: FileKind<'a>

File to send

thumb: Option<Vec<u8>>

Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail‘s width and height should not exceed 320

caption: Option<&'a str>

Caption of the audio to be sent, 0-1024 characters

parse_mode: Option<ParseMode>

Send ParseMode::Markdown or ParseMode::Html, if you want Telegram apps to show bold, italic, fixed-width text or inline URLs in the media caption.

duration: Option<i64>

Duration of the audio in seconds

performer: Option<&'a str>

Performer of the audio

title: Option<&'a str>

Title of the audio

Methods

impl<'a> InputMediaAudio<'a>[src]

pub fn new(media: FileKind<'a>) -> Self[src]

Trait Implementations

impl<'a> Clone for InputMediaAudio<'a>[src]

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

Performs copy-assignment from source. Read more

impl<'a> Debug for InputMediaAudio<'a>[src]

impl<'a> Serialize for InputMediaAudio<'a>[src]

Auto Trait Implementations

impl<'a> Send for InputMediaAudio<'a>

impl<'a> Sync for InputMediaAudio<'a>

Blanket Implementations

impl<T> From<T> for T[src]

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, 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> Borrow<T> for T where
    T: ?Sized
[src]

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T