bors 1a24003eb6 Auto merge of #13248 - harudagondi:unwrap-tuple, r=Veykril
Feature: Add assist to unwrap tuple declarations

> Implement #12923 for only tuples.
>
> Does not implement unwrapping for structs, as mentioned in the issue.

Add assist to unwrap tuples declarations to separate declarations.

```rust
fn main() {
	$0let (foo, bar, baz) = (1.0, "example", String::new())
}
```

becomes:

```rust
fn main() {
	let foo = 1.0;
	let bar = "example";
	let baz = String::new();
}
```

## Changelog

### Feature

- Added assist to unwrap tuple declarations.
2022-09-26 09:35:59 +00:00
..
2022-09-13 11:29:14 -07:00
2022-09-21 09:11:02 +08:00
2022-09-14 23:49:08 +02:00
2022-09-20 14:33:18 +02:00
2022-08-06 17:25:02 +03:00
2022-08-25 21:07:24 +02:00
Fmt
2022-09-02 21:18:36 +00:00
2022-08-19 21:37:05 +03:00