macro_rules! emit_impl_or_error {
($e:expr) => { ... };
}
Expand description
Run an expression which returns a darling::Result
, then either return the tokenized
representation of the Ok
value, or the tokens of the compiler errors in the Err
case.