macro_rules! stylex_unwrap {
($result:expr) => { ... };
($result:expr, $context:expr) => { ... };
}Expand description
Unwrap a Result or panic with a [StyleX] prefixed message.
Drop-in replacement for the existing unwrap_or_panic! macro.
Usage:
ⓘ
let val = stylex_unwrap!(result);
let val = stylex_unwrap!(result, "Converting value");