macro_rules! uwr {
( $e:expr, $channel:expr ) => { ... };
}Expand description
Unwrap the result of an expression, and if it is an error, send it to the given channel
and panic.
This is mostly to be used in for_each blocks, where the error is not propagated.