I think error-chain is good, especially I love chain_err
method.
However, sometimes I feel it too complex.
I don't want to generate ResultExt
and ChainedError
by macro. Isn't it confusing?
So, I made this tiny library, providing very straight forward implementation of
ResultExt
, ChainedError
, and some related traits.
In addition, You can use derive
to implement your own ErrorKind
type.
```rust extern crate errorchainmini;
extern crate errorchainminiderive; use std::io; use errorchain_mini::*; use std::error::Error;
enum MyErrorKind {
#[msg(short = "io error", detailed = "inner: {:?}", 0)]
IoError(io::Error),
#[msg(short = "index error", detailed = "invalid index: {:?}", _0)]
IndexEroor(usize),
TrivialError,
}
type MyError = ChainedError
1.26.0 (matchdefaultbindings is needed)
This project is licensed under either of
at your option.