pub type Result<T, E = Error> = Result<T, E>;
The result type used by this crate.
enum Result<T, E = Error> { // some variants omitted }