[][src]Enum zoom_api::FileType

pub enum FileType {
    MP4,
    M4A,
    Timeline,
    Transcript,
    Chat,
    CC,
}

The type of file.

Variants

MP4

Video file of the recording.

M4A

Audio-only file of the recording.

Timeline

Timestamp file of the recording.

Transcript

Transcription file of the recording.

Chat

A TXT file containing in-meeting chat messages that were sent during the meeting.

CC

File containing closed captions of the recording.

Implementations

impl FileType[src]

pub fn to_extension(&self) -> String[src]

Returns the extension for each file type.

pub fn get_mime_type(&self) -> String[src]

Returns the mime type for each file type.

Trait Implementations

impl Clone for FileType[src]

impl Debug for FileType[src]

impl Default for FileType[src]

impl<'de> Deserialize<'de> for FileType[src]

impl PartialEq<FileType> for FileType[src]

impl Serialize for FileType[src]

impl StructuralPartialEq for FileType[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.