This Does a very similar thing to existing projects like failure - Rust or error_chain but I was never quite satisfied with the other implementations.
This was my first time really mucking about with Rust's Trait system, so if I did anything incrdably dumb, or if improvments could otherwise be made, I'd love to hear about it. :)
borked is on crates.io so it can be added to Cargo.toml
:
[dependencies]
...
borked = "0.1.0"
This crate provides features for working with any error that implements the
std::error::Error
Trait. But Types implementing BorkChain
are most useful
with this crate.
```
extern crate borked; use borked::*;
fn doing_stuff() -> Borkable
fn qmark()-> Borkable
fn withbork() -> Borkable
} ```