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

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

Represents a video note to be sent.

Implementations

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

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

Constructs an VideoNote from bytes.

pub fn with_id(id: Ref<'a>) -> Self[src]

Constructs a VideoNote from a file ID.

Panics

Panicks if the ID starts with attach://.

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

Constructs a VideoNote from an URL.

Panics

Panicks if the URL starts with attach://.

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

Configures duration.

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

Configures length.

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

Configures thumb.

Trait Implementations

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

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

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

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

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

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

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

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for VideoNote<'a>

impl<'a> Send for VideoNote<'a>

impl<'a> Sync for VideoNote<'a>

impl<'a> Unpin for VideoNote<'a>

impl<'a> UnwindSafe for VideoNote<'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]