pub type Result<T, E = Error> = Result<T, E>;
This is a result type into which any error can be converted.
Results are stored as Error.
Error
enum Result<T, E = Error> { Ok(T), Err(E), }
Contains the success value
Contains the error value