@@ -2403,7 +2403,7 @@ fn main() { let s$0t = S{ f1:Arg(0) }; }
2403
2403
focus_range: 7..10,
2404
2404
name: "Arg",
2405
2405
kind: Struct,
2406
- description: "struct Arg(u32)",
2406
+ description: "struct Arg(u32); ",
2407
2407
},
2408
2408
},
2409
2409
],
@@ -2462,7 +2462,7 @@ fn main() { let s$0t = S{ f1: S{ f1: Arg(0) } }; }
2462
2462
focus_range: 7..10,
2463
2463
name: "Arg",
2464
2464
kind: Struct,
2465
- description: "struct Arg(u32)",
2465
+ description: "struct Arg(u32); ",
2466
2466
},
2467
2467
},
2468
2468
],
@@ -2498,7 +2498,7 @@ fn main() { let s$0t = (A(1), B(2), M::C(3) ); }
2498
2498
focus_range: 7..8,
2499
2499
name: "A",
2500
2500
kind: Struct,
2501
- description: "struct A(u32)",
2501
+ description: "struct A(u32); ",
2502
2502
},
2503
2503
},
2504
2504
HoverGotoTypeData {
@@ -2511,7 +2511,7 @@ fn main() { let s$0t = (A(1), B(2), M::C(3) ); }
2511
2511
focus_range: 22..23,
2512
2512
name: "B",
2513
2513
kind: Struct,
2514
- description: "struct B(u32)",
2514
+ description: "struct B(u32); ",
2515
2515
},
2516
2516
},
2517
2517
HoverGotoTypeData {
@@ -2525,7 +2525,7 @@ fn main() { let s$0t = (A(1), B(2), M::C(3) ); }
2525
2525
name: "C",
2526
2526
kind: Struct,
2527
2527
container_name: "M",
2528
- description: "pub struct C(u32)",
2528
+ description: "pub struct C(u32); ",
2529
2529
},
2530
2530
},
2531
2531
],
@@ -3346,7 +3346,7 @@ struct S$0T<const C: usize = 1, T = Foo>(T);
3346
3346
```
3347
3347
3348
3348
```rust
3349
- struct ST<const C: usize = 1, T = Foo>(T)
3349
+ struct ST<const C: usize = 1, T = Foo>(T);
3350
3350
```
3351
3351
"# ] ] ,
3352
3352
) ;
@@ -3367,7 +3367,7 @@ struct S$0T<const C: usize = {40 + 2}, T = Foo>(T);
3367
3367
```
3368
3368
3369
3369
```rust
3370
- struct ST<const C: usize = {const}, T = Foo>(T)
3370
+ struct ST<const C: usize = {const}, T = Foo>(T);
3371
3371
```
3372
3372
"# ] ] ,
3373
3373
) ;
@@ -3389,7 +3389,7 @@ struct S$0T<const C: usize = VAL, T = Foo>(T);
3389
3389
```
3390
3390
3391
3391
```rust
3392
- struct ST<const C: usize = VAL, T = Foo>(T)
3392
+ struct ST<const C: usize = VAL, T = Foo>(T);
3393
3393
```
3394
3394
"# ] ] ,
3395
3395
) ;
@@ -5946,7 +5946,7 @@ pub struct Foo(i32);
5946
5946
```
5947
5947
5948
5948
```rust
5949
- pub struct Foo(i32) // size = 4, align = 4
5949
+ pub struct Foo(i32); // size = 4, align = 4
5950
5950
```
5951
5951
5952
5952
---
0 commit comments