Commit 7850c28
committed
Auto merge of rust-lang#81578 - jonas-schievink:rollup-yhiyowl, r=jonas-schievink
Rollup of 18 pull requests
Successful merges:
- rust-lang#78044 (Implement io::Seek for io::Empty)
- rust-lang#79285 (Stabilize Arc::{increment,decrement}_strong_count)
- rust-lang#80053 (stabilise `cargo test -- --include-ignored`)
- rust-lang#80279 (Implement missing `AsMut<str>` for `str`)
- rust-lang#80470 (Stabilize by-value `[T; N]` iterator `core::array::IntoIter`)
- rust-lang#80945 (Add Box::downcast() for dyn Any + Send + Sync)
- rust-lang#81048 (Stabilize `core::slice::fill_with`)
- rust-lang#81198 (Remove requirement that forces symmetric and transitive PartialEq impls to exist)
- rust-lang#81422 (Account for existing `_` field pattern when suggesting `..`)
- rust-lang#81472 (Clone entire `TokenCursor` when collecting tokens)
- rust-lang#81484 (Optimize decimal formatting of 128-bit integers)
- rust-lang#81491 (Balance sidebar `Deref` cycle check with main content)
- rust-lang#81509 (Add a regression test for ICE of bad_placeholder_type)
- rust-lang#81547 (Edit rustc_typeck top-level docs)
- rust-lang#81550 (Replace predecessor with range in collections documentation)
- rust-lang#81558 (Fix ascii art text wrapping in mobile)
- rust-lang#81562 (Clarify that InPlaceIterable guarantees extend to all advancing iterator methods.)
- rust-lang#81563 (Improve docblock readability on small screen)
Failed merges:
r? `@ghost`
`@rustbot` modify labels: rollupFile tree
35 files changed
+284
-118
lines changed- compiler
- rustc_arena/src
- rustc_ast_lowering/src
- rustc_hir/src
- rustc_parse/src/parser
- rustc_trait_selection/src
- rustc_typeck/src
- check
- library
- alloc/src
- core
- src
- array
- convert
- fmt
- iter/traits
- slice
- tests
- std/src
- collections
- io
- util
- test/src
- src
- librustdoc/html
- render
- static
- test
- rustdoc-ui
- ui
- const-generics/array-impls
- pattern
- proc-macro
- auxiliary
- typeck
35 files changed
+284
-118
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
14 | | - | |
15 | 14 | | |
16 | 15 | | |
17 | 16 | | |
18 | | - | |
19 | 17 | | |
20 | 18 | | |
21 | 19 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
30 | 30 | | |
31 | 31 | | |
32 | 32 | | |
33 | | - | |
34 | 33 | | |
35 | 34 | | |
36 | 35 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
5 | | - | |
6 | 5 | | |
7 | 6 | | |
8 | 7 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1254 | 1254 | | |
1255 | 1255 | | |
1256 | 1256 | | |
1257 | | - | |
1258 | | - | |
1259 | | - | |
1260 | | - | |
1261 | | - | |
1262 | | - | |
1263 | | - | |
1264 | | - | |
1265 | | - | |
| 1257 | + | |
1266 | 1258 | | |
1267 | 1259 | | |
1268 | 1260 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
14 | | - | |
15 | 14 | | |
16 | 15 | | |
17 | 16 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
52 | 52 | | |
53 | 53 | | |
54 | 54 | | |
55 | | - | |
56 | | - | |
| 55 | + | |
| 56 | + | |
57 | 57 | | |
58 | | - | |
| 58 | + | |
59 | 59 | | |
60 | 60 | | |
61 | | - | |
| 61 | + | |
62 | 62 | | |
63 | 63 | | |
64 | 64 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1041 | 1041 | | |
1042 | 1042 | | |
1043 | 1043 | | |
1044 | | - | |
1045 | | - | |
1046 | | - | |
1047 | | - | |
1048 | | - | |
1049 | | - | |
| 1044 | + | |
| 1045 | + | |
1050 | 1046 | | |
1051 | 1047 | | |
1052 | 1048 | | |
| |||
1055 | 1051 | | |
1056 | 1052 | | |
1057 | 1053 | | |
| 1054 | + | |
| 1055 | + | |
| 1056 | + | |
| 1057 | + | |
| 1058 | + | |
| 1059 | + | |
| 1060 | + | |
| 1061 | + | |
| 1062 | + | |
| 1063 | + | |
| 1064 | + | |
1058 | 1065 | | |
| 1066 | + | |
1059 | 1067 | | |
1060 | 1068 | | |
1061 | 1069 | | |
| |||
1080 | 1088 | | |
1081 | 1089 | | |
1082 | 1090 | | |
1083 | | - | |
| 1091 | + | |
1084 | 1092 | | |
1085 | 1093 | | |
1086 | 1094 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
10 | | - | |
| 10 | + | |
11 | 11 | | |
12 | | - | |
| 12 | + | |
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
| |||
25 | 25 | | |
26 | 26 | | |
27 | 27 | | |
28 | | - | |
| 28 | + | |
29 | 29 | | |
30 | 30 | | |
31 | 31 | | |
| |||
56 | 56 | | |
57 | 57 | | |
58 | 58 | | |
59 | | - | |
60 | 59 | | |
61 | 60 | | |
62 | 61 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1372 | 1372 | | |
1373 | 1373 | | |
1374 | 1374 | | |
| 1375 | + | |
| 1376 | + | |
| 1377 | + | |
| 1378 | + | |
| 1379 | + | |
| 1380 | + | |
| 1381 | + | |
| 1382 | + | |
| 1383 | + | |
| 1384 | + | |
| 1385 | + | |
| 1386 | + | |
| 1387 | + | |
| 1388 | + | |
| 1389 | + | |
| 1390 | + | |
| 1391 | + | |
| 1392 | + | |
| 1393 | + | |
| 1394 | + | |
| 1395 | + | |
| 1396 | + | |
| 1397 | + | |
| 1398 | + | |
| 1399 | + | |
| 1400 | + | |
| 1401 | + | |
| 1402 | + | |
| 1403 | + | |
| 1404 | + | |
| 1405 | + | |
| 1406 | + | |
| 1407 | + | |
1375 | 1408 | | |
1376 | 1409 | | |
1377 | 1410 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
78 | 78 | | |
79 | 79 | | |
80 | 80 | | |
81 | | - | |
82 | 81 | | |
83 | 82 | | |
84 | 83 | | |
| |||
0 commit comments