possibly
A single exported macro called possibly!(), which works std::matches!() but allowing to return a value when the values matches.
It can be useful if you want to use pattern matching without dealing with extra cases.
The result is wrapped inside an Option.
Usage
use possibly;
let value = Foo;
// basic usage with simple match arm
assert_eq!;
// with match arm condition
assert_eq!;