Skip to content

Commit a797b6e

Browse files
committed
Auto merge of #39002 - GuillaumeGomez:debug_libcollections, r=aturon
Add Debug implementations for libcollection structs Part of #31869.
2 parents c49d102 + 0cc2448 commit a797b6e

File tree

10 files changed

+257
-0
lines changed

10 files changed

+257
-0
lines changed

src/libcollections/binary_heap.rs

+39
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,15 @@ pub struct PeekMut<'a, T: 'a + Ord> {
228228
sift: bool,
229229
}
230230

231+
#[stable(feature = "collection_debug", since = "1.17.0")]
232+
impl<'a, T: Ord + fmt::Debug> fmt::Debug for PeekMut<'a, T> {
233+
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
234+
f.debug_tuple("PeekMut")
235+
.field(&self.heap.data[0])
236+
.finish()
237+
}
238+
}
239+
231240
#[stable(feature = "binary_heap_peek_mut", since = "1.12.0")]
232241
impl<'a, T: Ord> Drop for PeekMut<'a, T> {
233242
fn drop(&mut self) {
@@ -968,6 +977,15 @@ pub struct Iter<'a, T: 'a> {
968977
iter: slice::Iter<'a, T>,
969978
}
970979

980+
#[stable(feature = "collection_debug", since = "1.17.0")]
981+
impl<'a, T: 'a + fmt::Debug> fmt::Debug for Iter<'a, T> {
982+
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
983+
f.debug_tuple("Iter")
984+
.field(&self.iter.as_slice())
985+
.finish()
986+
}
987+
}
988+
971989
// FIXME(#19839) Remove in favor of `#[derive(Clone)]`
972990
#[stable(feature = "rust1", since = "1.0.0")]
973991
impl<'a, T> Clone for Iter<'a, T> {
@@ -1016,6 +1034,15 @@ pub struct IntoIter<T> {
10161034
iter: vec::IntoIter<T>,
10171035
}
10181036

1037+
#[stable(feature = "collection_debug", since = "1.17.0")]
1038+
impl<T: fmt::Debug> fmt::Debug for IntoIter<T> {
1039+
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
1040+
f.debug_tuple("IntoIter")
1041+
.field(&self.iter.as_slice())
1042+
.finish()
1043+
}
1044+
}
1045+
10191046
#[stable(feature = "rust1", since = "1.0.0")]
10201047
impl<T> Iterator for IntoIter<T> {
10211048
type Item = T;
@@ -1051,6 +1078,7 @@ impl<T> FusedIterator for IntoIter<T> {}
10511078

10521079
/// An iterator that drains a `BinaryHeap`.
10531080
#[stable(feature = "drain", since = "1.6.0")]
1081+
#[derive(Debug)]
10541082
pub struct Drain<'a, T: 'a> {
10551083
iter: vec::Drain<'a, T>,
10561084
}
@@ -1200,6 +1228,17 @@ where T: Clone + Ord {
12001228
place: vec::PlaceBack<'a, T>,
12011229
}
12021230

1231+
#[unstable(feature = "collection_placement",
1232+
reason = "placement protocol is subject to change",
1233+
issue = "30172")]
1234+
impl<'a, T: Clone + Ord + fmt::Debug> fmt::Debug for BinaryHeapPlace<'a, T> {
1235+
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
1236+
f.debug_tuple("BinaryHeapPlace")
1237+
.field(&self.place)
1238+
.finish()
1239+
}
1240+
}
1241+
12031242
#[unstable(feature = "collection_placement",
12041243
reason = "placement protocol is subject to change",
12051244
issue = "30172")]

src/libcollections/btree/map.rs

+52
Original file line numberDiff line numberDiff line change
@@ -270,8 +270,16 @@ pub struct Iter<'a, K: 'a, V: 'a> {
270270
length: usize,
271271
}
272272

273+
#[stable(feature = "collection_debug", since = "1.17.0")]
274+
impl<'a, K: 'a + fmt::Debug, V: 'a + fmt::Debug> fmt::Debug for Iter<'a, K, V> {
275+
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
276+
f.debug_list().entries(self.clone()).finish()
277+
}
278+
}
279+
273280
/// A mutable iterator over a BTreeMap's entries.
274281
#[stable(feature = "rust1", since = "1.0.0")]
282+
#[derive(Debug)]
275283
pub struct IterMut<'a, K: 'a, V: 'a> {
276284
range: RangeMut<'a, K, V>,
277285
length: usize,
@@ -285,20 +293,46 @@ pub struct IntoIter<K, V> {
285293
length: usize,
286294
}
287295

296+
#[stable(feature = "collection_debug", since = "1.17.0")]
297+
impl<K: fmt::Debug, V: fmt::Debug> fmt::Debug for IntoIter<K, V> {
298+
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
299+
let range = Range {
300+
front: self.front.reborrow(),
301+
back: self.back.reborrow(),
302+
};
303+
f.debug_list().entries(range).finish()
304+
}
305+
}
306+
288307
/// An iterator over a BTreeMap's keys.
289308
#[stable(feature = "rust1", since = "1.0.0")]
290309
pub struct Keys<'a, K: 'a, V: 'a> {
291310
inner: Iter<'a, K, V>,
292311
}
293312

313+
#[stable(feature = "collection_debug", since = "1.17.0")]
314+
impl<'a, K: 'a + fmt::Debug, V: 'a + fmt::Debug> fmt::Debug for Keys<'a, K, V> {
315+
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
316+
f.debug_list().entries(self.inner.clone()).finish()
317+
}
318+
}
319+
294320
/// An iterator over a BTreeMap's values.
295321
#[stable(feature = "rust1", since = "1.0.0")]
296322
pub struct Values<'a, K: 'a, V: 'a> {
297323
inner: Iter<'a, K, V>,
298324
}
299325

326+
#[stable(feature = "collection_debug", since = "1.17.0")]
327+
impl<'a, K: 'a + fmt::Debug, V: 'a + fmt::Debug> fmt::Debug for Values<'a, K, V> {
328+
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
329+
f.debug_list().entries(self.inner.clone()).finish()
330+
}
331+
}
332+
300333
/// A mutable iterator over a BTreeMap's values.
301334
#[stable(feature = "map_values_mut", since = "1.10.0")]
335+
#[derive(Debug)]
302336
pub struct ValuesMut<'a, K: 'a, V: 'a> {
303337
inner: IterMut<'a, K, V>,
304338
}
@@ -309,6 +343,13 @@ pub struct Range<'a, K: 'a, V: 'a> {
309343
back: Handle<NodeRef<marker::Immut<'a>, K, V, marker::Leaf>, marker::Edge>,
310344
}
311345

346+
#[stable(feature = "collection_debug", since = "1.17.0")]
347+
impl<'a, K: 'a + fmt::Debug, V: 'a + fmt::Debug> fmt::Debug for Range<'a, K, V> {
348+
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
349+
f.debug_list().entries(self.clone()).finish()
350+
}
351+
}
352+
312353
/// A mutable iterator over a sub-range of BTreeMap's entries.
313354
pub struct RangeMut<'a, K: 'a, V: 'a> {
314355
front: Handle<NodeRef<marker::Mut<'a>, K, V, marker::Leaf>, marker::Edge>,
@@ -318,6 +359,17 @@ pub struct RangeMut<'a, K: 'a, V: 'a> {
318359
_marker: PhantomData<&'a mut (K, V)>,
319360
}
320361

362+
#[stable(feature = "collection_debug", since = "1.17.0")]
363+
impl<'a, K: 'a + fmt::Debug, V: 'a + fmt::Debug> fmt::Debug for RangeMut<'a, K, V> {
364+
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
365+
let range = Range {
366+
front: self.front.reborrow(),
367+
back: self.back.reborrow(),
368+
};
369+
f.debug_list().entries(range).finish()
370+
}
371+
}
372+
321373
/// A view into a single entry in a map, which may either be vacant or occupied.
322374
/// This enum is constructed from the [`entry`] method on [`BTreeMap`].
323375
///

src/libcollections/btree/set.rs

+47
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,23 @@ pub struct Iter<'a, T: 'a> {
8585
iter: Keys<'a, T, ()>,
8686
}
8787

88+
#[stable(feature = "collection_debug", since = "1.17.0")]
89+
impl<'a, T: 'a + fmt::Debug> fmt::Debug for Iter<'a, T> {
90+
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
91+
f.debug_tuple("Iter")
92+
.field(&self.iter.clone())
93+
.finish()
94+
}
95+
}
96+
8897
/// An owning iterator over a `BTreeSet`'s items.
8998
///
9099
/// This structure is created by the `into_iter` method on [`BTreeSet`]
91100
/// [`BTreeSet`] (provided by the `IntoIterator` trait).
92101
///
93102
/// [`BTreeSet`]: struct.BTreeSet.html
94103
#[stable(feature = "rust1", since = "1.0.0")]
104+
#[derive(Debug)]
95105
pub struct IntoIter<T> {
96106
iter: ::btree_map::IntoIter<T, ()>,
97107
}
@@ -102,6 +112,7 @@ pub struct IntoIter<T> {
102112
///
103113
/// [`BTreeSet`]: struct.BTreeSet.html
104114
/// [`range`]: struct.BTreeSet.html#method.range
115+
#[derive(Debug)]
105116
pub struct Range<'a, T: 'a> {
106117
iter: ::btree_map::Range<'a, T, ()>,
107118
}
@@ -118,6 +129,15 @@ pub struct Difference<'a, T: 'a> {
118129
b: Peekable<Iter<'a, T>>,
119130
}
120131

132+
#[stable(feature = "collection_debug", since = "1.17.0")]
133+
impl<'a, T: 'a + fmt::Debug> fmt::Debug for Difference<'a, T> {
134+
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
135+
f.debug_tuple("Difference")
136+
.field(&self.clone())
137+
.finish()
138+
}
139+
}
140+
121141
/// A lazy iterator producing elements in the set symmetric difference (in-order).
122142
///
123143
/// This structure is created by the [`symmetric_difference`] method on
@@ -131,6 +151,15 @@ pub struct SymmetricDifference<'a, T: 'a> {
131151
b: Peekable<Iter<'a, T>>,
132152
}
133153

154+
#[stable(feature = "collection_debug", since = "1.17.0")]
155+
impl<'a, T: 'a + fmt::Debug> fmt::Debug for SymmetricDifference<'a, T> {
156+
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
157+
f.debug_tuple("SymmetricDifference")
158+
.field(&self.clone())
159+
.finish()
160+
}
161+
}
162+
134163
/// A lazy iterator producing elements in the set intersection (in-order).
135164
///
136165
/// This structure is created by the [`intersection`] method on [`BTreeSet`].
@@ -143,6 +172,15 @@ pub struct Intersection<'a, T: 'a> {
143172
b: Peekable<Iter<'a, T>>,
144173
}
145174

175+
#[stable(feature = "collection_debug", since = "1.17.0")]
176+
impl<'a, T: 'a + fmt::Debug> fmt::Debug for Intersection<'a, T> {
177+
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
178+
f.debug_tuple("Intersection")
179+
.field(&self.clone())
180+
.finish()
181+
}
182+
}
183+
146184
/// A lazy iterator producing elements in the set union (in-order).
147185
///
148186
/// This structure is created by the [`union`] method on [`BTreeSet`].
@@ -155,6 +193,15 @@ pub struct Union<'a, T: 'a> {
155193
b: Peekable<Iter<'a, T>>,
156194
}
157195

196+
#[stable(feature = "collection_debug", since = "1.17.0")]
197+
impl<'a, T: 'a + fmt::Debug> fmt::Debug for Union<'a, T> {
198+
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
199+
f.debug_tuple("Union")
200+
.field(&self.clone())
201+
.finish()
202+
}
203+
}
204+
158205
impl<T: Ord> BTreeSet<T> {
159206
/// Makes a new `BTreeSet` with a reasonable choice of B.
160207
///

src/libcollections/enum_set.rs

+8
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,14 @@ pub struct Iter<E> {
222222
marker: marker::PhantomData<E>,
223223
}
224224

225+
impl<E: fmt::Debug> fmt::Debug for Iter<E> {
226+
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
227+
f.debug_tuple("Iter")
228+
.field(&self.clone())
229+
.finish()
230+
}
231+
}
232+
225233
// FIXME(#19839) Remove in favor of `#[derive(Clone)]`
226234
impl<E> Clone for Iter<E> {
227235
fn clone(&self) -> Iter<E> {

src/libcollections/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828

2929
#![cfg_attr(test, allow(deprecated))] // rand
3030
#![deny(warnings)]
31+
#![deny(missing_debug_implementations)]
3132

3233
#![feature(alloc)]
3334
#![feature(allow_internal_unstable)]

src/libcollections/linked_list.rs

+49
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,15 @@ pub struct Iter<'a, T: 'a> {
6565
marker: PhantomData<&'a Node<T>>,
6666
}
6767

68+
#[stable(feature = "collection_debug", since = "1.17.0")]
69+
impl<'a, T: 'a + fmt::Debug> fmt::Debug for Iter<'a, T> {
70+
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
71+
f.debug_tuple("Iter")
72+
.field(&self.clone())
73+
.finish()
74+
}
75+
}
76+
6877
// FIXME #19839: deriving is too aggressive on the bounds (T doesn't need to be Clone).
6978
#[stable(feature = "rust1", since = "1.0.0")]
7079
impl<'a, T> Clone for Iter<'a, T> {
@@ -82,13 +91,31 @@ pub struct IterMut<'a, T: 'a> {
8291
len: usize,
8392
}
8493

94+
#[stable(feature = "collection_debug", since = "1.17.0")]
95+
impl<'a, T: 'a + fmt::Debug> fmt::Debug for IterMut<'a, T> {
96+
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
97+
f.debug_tuple("IterMut")
98+
.field(self.clone())
99+
.finish()
100+
}
101+
}
102+
85103
/// An iterator over the elements of a `LinkedList`.
86104
#[derive(Clone)]
87105
#[stable(feature = "rust1", since = "1.0.0")]
88106
pub struct IntoIter<T> {
89107
list: LinkedList<T>,
90108
}
91109

110+
#[stable(feature = "collection_debug", since = "1.17.0")]
111+
impl<T: fmt::Debug> fmt::Debug for IntoIter<T> {
112+
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
113+
f.debug_tuple("IntoIter")
114+
.field(self.clone())
115+
.finish()
116+
}
117+
}
118+
92119
impl<T> Node<T> {
93120
fn new(element: T) -> Self {
94121
Node {
@@ -1077,6 +1104,17 @@ pub struct FrontPlace<'a, T: 'a> {
10771104
node: IntermediateBox<Node<T>>,
10781105
}
10791106

1107+
#[unstable(feature = "collection_placement",
1108+
reason = "struct name and placement protocol are subject to change",
1109+
issue = "30172")]
1110+
impl<'a, T: 'a + fmt::Debug> fmt::Debug for FrontPlace<'a, T> {
1111+
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
1112+
f.debug_tuple("FrontPlace")
1113+
.field(self.clone())
1114+
.finish()
1115+
}
1116+
}
1117+
10801118
#[unstable(feature = "collection_placement",
10811119
reason = "placement protocol is subject to change",
10821120
issue = "30172")]
@@ -1121,6 +1159,17 @@ pub struct BackPlace<'a, T: 'a> {
11211159
node: IntermediateBox<Node<T>>,
11221160
}
11231161

1162+
#[unstable(feature = "collection_placement",
1163+
reason = "struct name and placement protocol are subject to change",
1164+
issue = "30172")]
1165+
impl<'a, T: 'a + fmt::Debug> fmt::Debug for BackPlace<'a, T> {
1166+
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
1167+
f.debug_tuple("BackPlace")
1168+
.field(self.clone())
1169+
.finish()
1170+
}
1171+
}
1172+
11241173
#[unstable(feature = "collection_placement",
11251174
reason = "placement protocol is subject to change",
11261175
issue = "30172")]

src/libcollections/str.rs

+8
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
// It's cleaner to just turn off the unused_imports warning than to fix them.
2020
#![allow(unused_imports)]
2121

22+
use core::fmt;
2223
use core::str as core_str;
2324
use core::str::pattern::Pattern;
2425
use core::str::pattern::{Searcher, ReverseSearcher, DoubleEndedSearcher};
@@ -122,6 +123,13 @@ pub struct EncodeUtf16<'a> {
122123
encoder: Utf16Encoder<Chars<'a>>,
123124
}
124125

126+
#[stable(feature = "collection_debug", since = "1.17.0")]
127+
impl<'a> fmt::Debug for EncodeUtf16<'a> {
128+
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
129+
f.pad("EncodeUtf16 { .. }")
130+
}
131+
}
132+
125133
#[stable(feature = "encode_utf16", since = "1.8.0")]
126134
impl<'a> Iterator for EncodeUtf16<'a> {
127135
type Item = u16;

0 commit comments

Comments
 (0)