rust-wistia 0.8.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
//! Library-specific type definitions
//!
use crate::RustWistiaError;

/// Result type with errors populated solely by *our* library.
pub type Result<T> = std::result::Result<T, RustWistiaError>;