Enum hangouts_rs::MediaType[][src]

pub enum MediaType {
    Audio,
    Video,
    AudioVideo,
    Photo,
    AnimatedPhoto,
}

The type of a media attachment or hangout event.

Variants

Audio

Audio-only.

Video

Video-only.

AudioVideo

Both audio and video.

Photo

Photo.

AnimatedPhoto

Animated photo, such as a gif.

Implementations

impl MediaType[src]

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

Returns true if the media type is Self::Audio.

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

Returns true if the media type is Self::Video.

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

Returns true if the media type is Self::AudioVideo.

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

Returns true if the media type is Self::Photo.

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

Returns true if the media type is Self::AnimatedPhoto.

Trait Implementations

impl Clone for MediaType[src]

impl Debug for MediaType[src]

impl From<MediaType> for MediaType[src]

impl PartialEq<MediaType> for MediaType[src]

impl StructuralPartialEq for MediaType[src]

Auto Trait Implementations

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.