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

pub struct VideoNote<'a> { /* fields omitted */ }

Represents a video note to be sent.

Methods

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

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

Constructs an VideoNote from bytes.

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

Constructs a VideoNote from a file ID.

Panics

Panicks if the ID starts with attach://.

pub fn 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]

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

Performs copy-assignment from source. Read more

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

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

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

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

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

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

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

Auto Trait Implementations

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

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

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

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

impl<'a> UnwindSafe for VideoNote<'a>

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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

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

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

impl<T> Erased for T