This crate provides a macro to implement equality of enum variants.
Two enum variants are equal if they are the same variant from the same enum, regardless of the values of the fields each variant contains.
```rust
enum Enum { Variant, } ```
```rust
extern crate varianteq;
enum E { A(i32), B(i32), C(u32, bool), }
fn main() { asserteq!(E::A(1), E::A(2)); assertne!(E::A(1), E::B(1)); assert_ne!(E::A(1), E::C(1, false)); } ```
The VariantEq
macro only applies to enums and will cauase a compilation error if used on
structs.
```rust
struct S; ```
text
error: #[derive(VariantEq)] is only defined for enums