macro_rules! const_try { ($result: expr) => { ... }; }
Similar to the ? operator used on Result but for const contexts.
?
Result
const
Note that no conversions are performed, as it is impossible in const contexts.