rust-wistia 0.3.0

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
use serde::{Deserialize, Serialize};

#[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct ProjectInfo {
    pub hashed_id: String,
    pub id: u64,
    pub name: String,
}