utils-results-1.1.1 has been yanked.
utils-results
The easiest and most intuitive error handling solution. (no dependencies, about 150 lines pure codes)
| Docs |
Overview
First, You should make your own an error set.
err!
And just errbang!
errbang!
More Examples
errbang!;
errbang!;
errbang!;
- Please use our Master Result<T> and ResultSend<T> instead std::result::Result or io::Result etc..
utils-results/lib.rs
/// Master Result
pub type Result<T> = Result;
/// Master Result for Send + Sync trait
pub type ResultSend<T> = Result;
just put this in your project.
pub use *;