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

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

Represents an animation to be sent.

Methods

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

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

Constructs an Animation from bytes.

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

Constructs an Animation from a file ID.

Panics

Panicks if the ID starts with attach://.

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

Constructs an Animation 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 width(self, width: u32) -> Self[src]

Configures width.

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

Configures height.

Trait Implementations

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

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

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

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

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

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

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

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

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for Animation<'a>

impl<'a> Send for Animation<'a>

impl<'a> Sync for Animation<'a>

impl<'a> Unpin for Animation<'a>

impl<'a> UnwindSafe for Animation<'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, 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.