DASSIGN: Destructuring assignment

Use this crate for simple tuple destructuring assignments while the compiler implementation of this feature is being stabilized.

```rust let mut x; let mut y;

for _ in 1..100 { dassign!((x, y) = funcreturningtuple()); } ```

Once this feature is stabilized simply remove the dassign! macro from your code.

Reference