macro_rules! displaydoc {
($(#[$enum_attr:meta])*
$pub:vis enum $name:ident {
$($body:tt)*
}) => { ... };
}
Expand description
The main macro of this crate which is used to create the Display
implementation
for an enum.
See the root module for more documentation.