Emulating checked exceptions in Rust.
Cargo.toml
:
```toml [dependencies.enumx] version = "0.4"
[dependencies.cex] version = "0.5" ```
Add this if you want to support backtrace:
toml
features = ["log","pretty_log"]
src/lib.rs
:
rust
use enumx::export::*;
use enumx::predefined::*; // or use your own enum types at your will.
use cex::*;
ad-hoc enums as checked exceptions.
Backtrace.
Type as pattern.
Fallback as impl Trait
.
See the enumx book for more.
Under MIT.