macro_rules! inner_enum {
($ty:ident, $var:ident) => { ... };
($ty:ident, $var:ident, $var_ty:ident) => { ... };
}Expand description
Provides convenience functions to destructure an enum with new-type variants.
macro_rules! inner_enum {
($ty:ident, $var:ident) => { ... };
($ty:ident, $var:ident, $var_ty:ident) => { ... };
}Provides convenience functions to destructure an enum with new-type variants.