pub type Result<T> = Result<T, String>;
Result type used by traits in this crate.
enum Result<T> { Ok(T), Err(String), }
Contains the success value
Contains the error value