macro_rules! e {
($(
$(#[$attr:meta])*
pub enum $i:ident { $($field:tt)* }
)*) => { ... };
}
Expand description
Implement Clone
and Copy
for an enum, as well as Debug
, Eq
, Hash
, and
PartialEq
if the extra_traits
feature is enabled.