macro_rules! missing { ($( $(#[$attr:meta])* pub enum $i:ident {} )*) => { ... }; }
Specify that an enum should have no traits that aren’t specified in the macro invocation, i.e. no Clone or Copy.
Clone
Copy