rust/library/alloc
Mara Bos a7a7737114
Rollup merge of #84013 - CDirkx:fmt, r=m-ou-se
Replace all `fmt.pad` with `debug_struct`

This replaces any occurrence of:
- `f.pad("X")` with `f.debug_struct("X").finish()`
- `f.pad("X { .. }")` with `f.debug_struct("X").finish_non_exhaustive()`

This is in line with existing formatting code such as
1255053067/library/std/src/sync/mpsc/mod.rs (L1470-L1475)
2021-04-21 23:06:11 +02:00
..
benches Try to make Vec benchmarks only run code they are benchmarking 2021-03-25 00:14:00 -04:00
src Rollup merge of #84013 - CDirkx:fmt, r=m-ou-se 2021-04-21 23:06:11 +02:00
tests VecDeque: Add partition_point() #78021 2021-04-15 23:23:23 +02:00
Cargo.toml Add license metadata for std dependencies 2021-02-21 13:36:18 -05:00