macro_rules! debug_err { ($err:expr, $($arg:tt)*) => { ... }; }
Expand description
Emit a error message and return an error.
Invoke the error!
macro on all but the first argument. A call to
debug_err!(err, ...)
is an expression whose value is the expression err
.