const_option_unwrap

Macro const_option_unwrap 

Source
macro_rules! const_option_unwrap {
    ($e:expr, $default:expr) => { ... };
    ($e:expr) => { ... };
}
Expand description

Unwrap an Option in constant contexts. Signal a fatal error on None.

Can be passed an expression for type checking.