Macro emit
Source macro_rules! emit {
{{$($t:tt)*}} => { ... };
}
Expand description
Identity macro that just outputs what it is given.
This can be used with a export!() generated macro
to emit the exported tokens. See the example module for an example
of it’s usage.