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>;