pub type Result<T> = Result<T, Error>;
Wrapped result type for this crate.
This is just a failure::Error error type, with generic Ok type.
failure::Error
Ok
pub enum Result<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value