pub type Result<T, E = Error> = Result<T, E>;
A Result, returning either a value or an error, defaulting to the crate error.
enum Result<T, E = Error> { Ok(T), Err(E), }
Contains the success value
Contains the error value