@@ -288,6 +288,7 @@ where
288
288
/// documentation for more.
289
289
///
290
290
/// [`iter`]: BTreeMap::iter
291
+ #[ must_use = "iterators are lazy and do nothing unless consumed" ]
291
292
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
292
293
pub struct Iter < ' a , K : ' a , V : ' a > {
293
294
range : LazyLeafRange < marker:: Immut < ' a > , K , V > ,
@@ -316,6 +317,7 @@ pub struct IterMut<'a, K: 'a, V: 'a> {
316
317
_marker : PhantomData < & ' a mut ( K , V ) > ,
317
318
}
318
319
320
+ #[ must_use = "iterators are lazy and do nothing unless consumed" ]
319
321
#[ stable( feature = "collection_debug" , since = "1.17.0" ) ]
320
322
impl < K : fmt:: Debug , V : fmt:: Debug > fmt:: Debug for IterMut < ' _ , K , V > {
321
323
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
@@ -359,6 +361,7 @@ impl<K: fmt::Debug, V: fmt::Debug> fmt::Debug for IntoIter<K, V> {
359
361
/// documentation for more.
360
362
///
361
363
/// [`keys`]: BTreeMap::keys
364
+ #[ must_use = "iterators are lazy and do nothing unless consumed" ]
362
365
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
363
366
pub struct Keys < ' a , K : ' a , V : ' a > {
364
367
inner : Iter < ' a , K , V > ,
@@ -377,6 +380,7 @@ impl<K: fmt::Debug, V> fmt::Debug for Keys<'_, K, V> {
377
380
/// documentation for more.
378
381
///
379
382
/// [`values`]: BTreeMap::values
383
+ #[ must_use = "iterators are lazy and do nothing unless consumed" ]
380
384
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
381
385
pub struct Values < ' a , K : ' a , V : ' a > {
382
386
inner : Iter < ' a , K , V > ,
@@ -395,6 +399,7 @@ impl<K, V: fmt::Debug> fmt::Debug for Values<'_, K, V> {
395
399
/// documentation for more.
396
400
///
397
401
/// [`values_mut`]: BTreeMap::values_mut
402
+ #[ must_use = "iterators are lazy and do nothing unless consumed" ]
398
403
#[ stable( feature = "map_values_mut" , since = "1.10.0" ) ]
399
404
pub struct ValuesMut < ' a , K : ' a , V : ' a > {
400
405
inner : IterMut < ' a , K , V > ,
@@ -413,6 +418,7 @@ impl<K, V: fmt::Debug> fmt::Debug for ValuesMut<'_, K, V> {
413
418
/// See its documentation for more.
414
419
///
415
420
/// [`into_keys`]: BTreeMap::into_keys
421
+ #[ must_use = "iterators are lazy and do nothing unless consumed" ]
416
422
#[ stable( feature = "map_into_keys_values" , since = "1.54.0" ) ]
417
423
pub struct IntoKeys < K , V > {
418
424
inner : IntoIter < K , V > ,
@@ -431,6 +437,7 @@ impl<K: fmt::Debug, V> fmt::Debug for IntoKeys<K, V> {
431
437
/// See its documentation for more.
432
438
///
433
439
/// [`into_values`]: BTreeMap::into_values
440
+ #[ must_use = "iterators are lazy and do nothing unless consumed" ]
434
441
#[ stable( feature = "map_into_keys_values" , since = "1.54.0" ) ]
435
442
pub struct IntoValues < K , V > {
436
443
inner : IntoIter < K , V > ,
@@ -449,6 +456,7 @@ impl<K, V: fmt::Debug> fmt::Debug for IntoValues<K, V> {
449
456
/// documentation for more.
450
457
///
451
458
/// [`range`]: BTreeMap::range
459
+ #[ must_use = "iterators are lazy and do nothing unless consumed" ]
452
460
#[ stable( feature = "btree_range" , since = "1.17.0" ) ]
453
461
pub struct Range < ' a , K : ' a , V : ' a > {
454
462
inner : LeafRange < marker:: Immut < ' a > , K , V > ,
@@ -467,6 +475,7 @@ impl<K: fmt::Debug, V: fmt::Debug> fmt::Debug for Range<'_, K, V> {
467
475
/// documentation for more.
468
476
///
469
477
/// [`range_mut`]: BTreeMap::range_mut
478
+ #[ must_use = "iterators are lazy and do nothing unless consumed" ]
470
479
#[ stable( feature = "btree_range" , since = "1.17.0" ) ]
471
480
pub struct RangeMut < ' a , K : ' a , V : ' a > {
472
481
inner : LeafRange < marker:: ValMut < ' a > , K , V > ,
@@ -1265,7 +1274,6 @@ impl<K, V> BTreeMap<K, V> {
1265
1274
/// assert_eq!(keys, [1, 2]);
1266
1275
/// ```
1267
1276
#[ inline]
1268
- #[ must_use = "`self` will be dropped if the result is not used" ]
1269
1277
#[ stable( feature = "map_into_keys_values" , since = "1.54.0" ) ]
1270
1278
pub fn into_keys ( self ) -> IntoKeys < K , V > {
1271
1279
IntoKeys { inner : self . into_iter ( ) }
@@ -1288,7 +1296,6 @@ impl<K, V> BTreeMap<K, V> {
1288
1296
/// assert_eq!(values, ["hello", "goodbye"]);
1289
1297
/// ```
1290
1298
#[ inline]
1291
- #[ must_use = "`self` will be dropped if the result is not used" ]
1292
1299
#[ stable( feature = "map_into_keys_values" , since = "1.54.0" ) ]
1293
1300
pub fn into_values ( self ) -> IntoValues < K , V > {
1294
1301
IntoValues { inner : self . into_iter ( ) }
0 commit comments