pub type Result<T, E = Error> = Result<T, E>;
A specialized Result type for this crate’s operations.
Result
This is generally used to avoid writing out Error directly and is otherwise a direct mapping to Result.
Error
enum Result<T, E = Error> { Ok(T), Err(E), }
Contains the success value
Contains the error value