macro_rules! errormake {
($structname:ident) => { ... };
($(#[$meta:meta])* pub $structname:ident) => { ... };
(impl $structname:ident) => { ... };
}Expand description
The macro used to generate basic Error structs.
See the crate docs for the full documentation.