bors[bot] dac7060382
Merge #6476
6476: Add missing AssocItems in add_custom_impl assist r=matklad a=Veykril

```rust
use std::fmt;

#[derive(Debu<|>g)]
struct Foo {
    bar: String,
}
```
->
```rust
use std::fmt;

struct Foo {
    bar: String,
}

impl fmt::Debug for Foo {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        ${0:todo!()}
    }
}
```

Co-authored-by: Lukas Wirth <lukastw97@gmail.com>
2020-11-07 18:21:11 +00:00
..
2020-11-07 18:21:11 +00:00
2020-11-02 10:57:31 -07:00
2020-11-02 16:58:33 +01:00
2020-11-06 22:52:42 +01:00
2020-11-06 22:30:58 +01:00
2020-11-06 22:30:58 +01:00
2020-11-02 16:58:33 +01:00
2020-11-06 22:23:14 +01:00
2020-11-02 14:07:08 +01:00
2020-11-02 14:07:08 +01:00
2020-11-02 14:07:08 +01:00
2020-11-02 16:58:33 +01:00
2020-11-07 18:21:11 +00:00
2020-11-02 10:57:31 -07:00
2020-11-02 16:58:33 +01:00