pub type RiffResult<T> = Result<T, RiffError>;
A convenient Result type.
Result
pub enum RiffResult<T> { Ok(T), Err(RiffError), }
Contains the success value
Contains the error value