[][src]Struct tbot::types::inline_query::result::gif::Gif

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

Methods

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

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

Constructs a cached Gif result.

pub fn fresh(gif: Fresh<'a>) -> Self[src]

Constructs a fresh Gif result.

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

Configures the title of the GIF.

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

Configures the caption of the GIF.

pub fn input_message_content(
    self,
    content: impl Into<InputMessageContent<'a>>
) -> Self
[src]

Configures the content shown after sending the message.

Trait Implementations

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

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

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

impl<'a> From<Gif<'a>> for Kind<'a>[src]

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

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for Gif<'a>

impl<'a> Send for Gif<'a>

impl<'a> Sync for Gif<'a>

impl<'a> Unpin for Gif<'a>

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