This small crate exports a single macro variant!
, which can be used to destructure an expression into, and return assignments from, a single pattern. It works similarly to the matches!
macro from the rust std lib.
This macro is mainly useful for reducing matching boilerplate when you just want to try and extract some values from a pattern match (my reason for making this 😉).
```rust use variant::variant;
let val = Some((0, 1)); let res = variant!(val, Some((i, ))).expect("i"); asserteq!(res, 0);
let res = variant!(val, Some((10, j))); assert!(res.is_err()); ```
There are more examples on the docs page