[][src]Struct tbot::types::input_file::Audio

#[must_use]pub struct Audio<'a> { /* fields omitted */ }

Represents an audio to be sent.

Methods

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

pub fn bytes(bytes: &'a [u8]) -> Self[src]

Constructs an Audio from bytes.

pub fn id(id: &'a str) -> Self[src]

Constructs an Audio from a file ID.

Panics

Panicks if the ID starts with attach://.

pub fn url(url: &'a str) -> Self[src]

Constructs an Audio from an URL.

Panics

Panicks if the URL starts with attach://.

pub fn thumb(self, thumb: Thumb<'a>) -> Self[src]

Configures thumb.

pub fn caption(self, caption: impl Into<Text<'a>>) -> Self[src]

Configures caption.

pub fn duration(self, duration: u32) -> Self[src]

Configures duration.

pub fn performer(self, performer: &'a str) -> Self[src]

Configures performer.

pub fn title(self, title: &'a str) -> Self[src]

Configures title.

Trait Implementations

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

impl<'a> Copy for Audio<'a>[src]

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

impl<'a> Eq for Audio<'a>[src]

impl<'a> From<Audio<'a>> for EditableMedia<'a>[src]

impl<'a> Hash for Audio<'a>[src]

impl<'a> PartialEq<Audio<'a>> for Audio<'a>[src]

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

impl<'a> StructuralEq for Audio<'a>[src]

impl<'a> StructuralPartialEq for Audio<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Audio<'a>

impl<'a> Send for Audio<'a>

impl<'a> Sync for Audio<'a>

impl<'a> Unpin for Audio<'a>

impl<'a> UnwindSafe for Audio<'a>

Blanket Implementations

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

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

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

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

impl<T> Instrument for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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> WithSubscriber for T[src]