error-tree 0.6.0

This crate let's us use the `error_tree!` proc macro for ergonomic error hierarchy definition
Documentation
1
2
3
4
5
6
7
crate::ix!();

pub trait ErrorTreeVisitor {

    fn visit_error_enum(&mut self, e: &ErrorEnum);
    // other methods as needed
}