Contains three parts (only a sketch right now):
Fail
trait and Error
type wrapper, which acts as a dynamically
dispatched, open sum typematch_err!
, a macro to give match-like syntax for downcasting the Error
typederive(Fail)
, a derive for making your type an error typeExample use case:
```rust
struct CustomError { message: String, }
fn main() { use std::io;
let err = run_program();
match_err!(err => {
io::Error: err => { println!("IO error: {}", err) }
CustomError: err => { println!("internal error: {}", err) }
final: _ => { panic!("should not have another kind of error") }
});
} ```