Skip to content

Commit 48c2454

Browse files
authored
Auto merge of #34885 - GuillaumeGomez:btree_map_debug, r=alexcrichton
Add debug for btree_map::{Entry, VacantEntry, OccupiedEntry}
2 parents 27e766d + dae311e commit 48c2454

File tree

1 file changed

+33
-0
lines changed
  • src/libcollections/btree

1 file changed

+33
-0
lines changed

src/libcollections/btree/map.rs

+33
Original file line numberDiff line numberDiff line change
@@ -326,6 +326,20 @@ pub enum Entry<'a, K: 'a, V: 'a> {
326326
OccupiedEntry<'a, K, V>),
327327
}
328328

329+
#[stable(feature= "debug_btree_map", since = "1.12.0")]
330+
impl<'a, K: 'a + Debug + Ord, V: 'a + Debug> Debug for Entry<'a, K, V> {
331+
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
332+
match *self {
333+
Vacant(ref v) => f.debug_tuple("Entry")
334+
.field(v)
335+
.finish(),
336+
Occupied(ref o) => f.debug_tuple("Entry")
337+
.field(o)
338+
.finish(),
339+
}
340+
}
341+
}
342+
329343
/// A vacant Entry.
330344
#[stable(feature = "rust1", since = "1.0.0")]
331345
pub struct VacantEntry<'a, K: 'a, V: 'a> {
@@ -337,6 +351,15 @@ pub struct VacantEntry<'a, K: 'a, V: 'a> {
337351
_marker: PhantomData<&'a mut (K, V)>,
338352
}
339353

354+
#[stable(feature= "debug_btree_map", since = "1.12.0")]
355+
impl<'a, K: 'a + Debug + Ord, V: 'a> Debug for VacantEntry<'a, K, V> {
356+
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
357+
f.debug_tuple("VacantEntry")
358+
.field(self.key())
359+
.finish()
360+
}
361+
}
362+
340363
/// An occupied Entry.
341364
#[stable(feature = "rust1", since = "1.0.0")]
342365
pub struct OccupiedEntry<'a, K: 'a, V: 'a> {
@@ -348,6 +371,16 @@ pub struct OccupiedEntry<'a, K: 'a, V: 'a> {
348371
_marker: PhantomData<&'a mut (K, V)>,
349372
}
350373

374+
#[stable(feature= "debug_btree_map", since = "1.12.0")]
375+
impl<'a, K: 'a + Debug + Ord, V: 'a + Debug> Debug for OccupiedEntry<'a, K, V> {
376+
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
377+
f.debug_struct("OccupiedEntry")
378+
.field("key", self.key())
379+
.field("value", self.get())
380+
.finish()
381+
}
382+
}
383+
351384
// An iterator for merging two sorted sequences into one
352385
struct MergeIter<K, V, I: Iterator<Item = (K, V)>> {
353386
left: Peekable<I>,

0 commit comments

Comments
 (0)