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