macro_rules! uwo {
( $e:expr, $channel:expr ) => { ... };
}Expand description
Unwrap an option, 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.
macro_rules! uwo {
( $e:expr, $channel:expr ) => { ... };
}Unwrap an option, 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.