You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adds a stub struct with a definition matching the expression under the cursor.
Example
---
```rust
fn foo() {
let bar = Bar$0 { x: 2, y: 3, force: true };
}
```
->
```rust
fn foo() {
let bar = Bar { x: 2, y: 3, force: true };
}
struct Bar { x: i32, y: i32, force: bool }
```
0 commit comments