@@ -326,6 +326,20 @@ pub enum Entry<'a, K: 'a, V: 'a> {
326
326
OccupiedEntry < ' a , K , V > ) ,
327
327
}
328
328
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
+
329
343
/// A vacant Entry.
330
344
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
331
345
pub struct VacantEntry < ' a , K : ' a , V : ' a > {
@@ -337,6 +351,15 @@ pub struct VacantEntry<'a, K: 'a, V: 'a> {
337
351
_marker : PhantomData < & ' a mut ( K , V ) > ,
338
352
}
339
353
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
+
340
363
/// An occupied Entry.
341
364
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
342
365
pub struct OccupiedEntry < ' a , K : ' a , V : ' a > {
@@ -348,6 +371,16 @@ pub struct OccupiedEntry<'a, K: 'a, V: 'a> {
348
371
_marker : PhantomData < & ' a mut ( K , V ) > ,
349
372
}
350
373
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
+
351
384
// An iterator for merging two sorted sequences into one
352
385
struct MergeIter < K , V , I : Iterator < Item = ( K , V ) > > {
353
386
left : Peekable < I > ,
0 commit comments