[][src]Enum tbot::types::input_file::GroupMedia

#[non_exhaustive]#[must_use]pub enum GroupMedia<'a> {
    Photo(Photo<'a>),
    Video(Video<'a>),
}

Represents a media that can be sent in a group (aka albums).

Variants (Non-exhaustive)

Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Photo(Photo<'a>)

A group's photo.

Video(Video<'a>)

A group's video.

Implementations

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

pub fn is_photo(&self) -> bool[src]

Returns true if self is of variant Photo.

pub fn expect_photo(self) -> Photo<'a> where
    Self: Debug
[src]

Unwraps the value, yielding the content of Photo.

Panics

Panics if the value is not Photo, with a panic message including the content of self.

pub fn photo(self) -> Option<Photo<'a>>[src]

Returns Some if self is of variant Photo, and None otherwise.

pub fn is_video(&self) -> bool[src]

Returns true if self is of variant Video.

pub fn expect_video(self) -> Video<'a> where
    Self: Debug
[src]

Unwraps the value, yielding the content of Video.

Panics

Panics if the value is not Video, with a panic message including the content of self.

pub fn video(self) -> Option<Video<'a>>[src]

Returns Some if self is of variant Video, and None otherwise.

Trait Implementations

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

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

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

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

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

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

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

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

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for GroupMedia<'a>

impl<'a> Send for GroupMedia<'a>

impl<'a> Sync for GroupMedia<'a>

impl<'a> Unpin for GroupMedia<'a>

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