Rust-Borked

Error handling for rust.

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. :)

Example

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.

```

[macro_use]

extern crate borked; use borked::*;

fn doing_stuff() -> Borkable{ // Do something useful... // Encounter error... Bork!("Oh No!"); // Never reached in this case. return Ok(0); }

fn qmark()-> Borkable{ let e = u32::fromstrradix("Obviouslynotgonnawork", 10)?; return Ok(e); }

fn withbork() -> Borkable{ let e = u32::fromstrradix("Obviouslynotgonnawork", 10) .bork_with(BaseBork::msg("AHHH It Didn't Work!"))?; return Ok(e+7);

} ```