3 releases (1 stable)
1.0.0 | Apr 7, 2023 |
---|---|
0.3.0 | Dec 10, 2022 |
0.2.2 | Dec 5, 2022 |
0.1.0 |
|
#2167 in Rust patterns
38 downloads per month
10KB
60 lines
Variant: Destructuring Macros
This small crate exports two convenience macros. try_variant!
, which can be used to destructure an expression into a single pattern, returning a result of assignments in the pattern. get_variant!
, which works in the same way but returns an Option
.
Both macros work 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 😉).
Example
use variant::try_variant;
let val = Some((0, 1));
let res = try_variant!(val, Some((i, _))).expect("i");
assert_eq!(res, 0);
let res = try_variant!(val, Some((10, j)));
assert!(res.is_err());
There are more examples on the docs page
Dependencies
~1.5MB
~37K SLoC