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

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

Represents a video to be sent.

Methods

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

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

Constructs a Video from bytes.

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

Constructs a Video from a file ID.

Panics

Panicks if the ID starts with attach://.

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

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

Configures width.

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

Configures height.

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

Configures duration.

pub fn supports_streaming(self, is_streamed: bool) -> Self[src]

Configures supports_streaming.

Trait Implementations

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

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

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

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

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

impl<'a> From<Video<'a>> for GroupMedia<'a>[src]

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

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

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

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for Video<'a>

impl<'a> Send for Video<'a>

impl<'a> Sync for Video<'a>

impl<'a> Unpin for Video<'a>

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