Skip to content

Commit 668af80

Browse files
Add debug implementation for BinaryHeapPlace
1 parent ba841f0 commit 668af80

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/libcollections/binary_heap.rs

+9
Original file line numberDiff line numberDiff line change
@@ -1236,6 +1236,15 @@ where T: Clone + Ord {
12361236
place: vec::PlaceBack<'a, T>,
12371237
}
12381238

1239+
#[stable(feature = "collection_debug", since = "1.15.0")]
1240+
impl<'a, T: Clone + Ord + fmt::Debug> fmt::Debug for BinaryHeapPlace<'a, T> {
1241+
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
1242+
f.debug_tuple("BinaryHeapPlace")
1243+
.field(&self)
1244+
.finish()
1245+
}
1246+
}
1247+
12391248
#[unstable(feature = "collection_placement",
12401249
reason = "placement protocol is subject to change",
12411250
issue = "30172")]

0 commit comments

Comments
 (0)