pub type Result<T, E = Error<<T as FromStr>::Err>> = Result<T, E>;
A specialized Result for this library’s errors.
Result
enum Result<T, E = Error<<T as FromStr>::Err>> { Ok(T), Err(E), }
Contains the success value
Contains the error value