destructure 0.7.0

Automation of Destructure Pattern
Documentation
1
2
3
4
5
6
7
8
9
10
11
use destructure::{Destructure, Mutation};

#[derive(Debug, Clone, Destructure, Mutation)]
pub struct Domain<A, B> {
    a: A,
    b: B
}

fn main() {
    // no-op, build only
}