rust-wistia 0.1.1

A rust crate wrapping Wistia's Data and Upload API into a simple easy to use interface
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use serde::{Deserialize, Serialize};

/// A value which represents the type of media.
///
/// See more [on `type`][].
///
/// [on `type`]: https://wistia.com/support/developers/data-api#medias-response
#[derive(Debug, PartialEq, Serialize, Deserialize)]
pub enum MediaType {
    Video,
    Audio,
    Image,
    PdfDocument,
    MicrosoftOfficeDocument,
    Swf,
    UnknownType,
}