A collection of some rust macros to simplify common error handling patterns.
Add to Cargo.toml
:
toml
[dependencies.error-utils]
git = "https://gitlab.com/robert-oleynik/rust-error-utils.git"
features = ["derive"]
handle_err
Macro```rust use errorutils::handleerr; use std::path::Path;
fn readfile
fail
MacroShorthand for std::process::exit
rust
fail!();
// or
fail!(10);
Errors
Derive Macro>
This Macro requires the
derive
feature
Note: This example uses the toml
crate.
```rust use std::path::Path;
use error_utils::Errors;
enum ConfigError { #[error("Failed to read config file (Reason: {})", from)] Io(std::io::Error), #[error("Failed to parse config file (Reason: {})", from)] Toml(toml::de::Error) }
fn readconfig
This project is license under the MIT
license. See
LICENSE