pub type Result<T, E> = Result<T, Error<E>>;
The specialized result type to be used in this library.
enum Result<T, E> { Ok(T), Err(Error<E>), }
Contains the success value
Contains the error value