easy_error_macros 0.1.0

Procedural macros for the easy_error crate
Documentation
1
2
3
4
5
6
7
8
// easy_error_macros/tests/compile-fail/invalid_define_error.rs

use easy_error_macros::define_error;

// Missing variants
define_error!(IncompleteError);

fn main() {}