Macro const_try

Source
macro_rules! const_try {
    ($result: expr) => { ... };
}
Expand description

Similar to the ? operator used on Result but for const contexts.

Note that no conversions are performed, as it is impossible in const contexts.