Beginnerror
A simple error handling crate for beginners.
Quickstart
Go ahead and add the dependancy to your Cargo.toml
so you can use the crate in your rust code.
Then, you can use it at the top of your code:
use *;
Now, in your functions, you can use the Result<> to handle errors and use the ?
operator.
Then, you can handle the result.
Simple enough, right?