Condition Matcher Derive
This crate provides the #[derive(Matchable)] procedural macro for the condition-matcher crate.
Usage
use ;
This crate provides the #[derive(Matchable)] procedural macro for the condition-matcher crate.
use condition_matcher::{Matchable, MatchableDerive};
#[derive(MatchableDerive, PartialEq)]
struct User {
name: String,
age: u32,
email: Option<String>,
}