@@ -296,6 +296,7 @@ pub fn forget_unsized<T: ?Sized>(t: T) {
296
296
///
297
297
/// [alignment]: align_of
298
298
#[ inline( always) ]
299
+ #[ must_use]
299
300
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
300
301
#[ rustc_promotable]
301
302
#[ rustc_const_stable( feature = "const_size_of" , since = "1.24.0" ) ]
@@ -324,6 +325,7 @@ pub const fn size_of<T>() -> usize {
324
325
/// assert_eq!(13, mem::size_of_val(y));
325
326
/// ```
326
327
#[ inline]
328
+ #[ must_use]
327
329
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
328
330
#[ rustc_const_unstable( feature = "const_size_of_val" , issue = "46571" ) ]
329
331
#[ cfg_attr( not( test) , rustc_diagnostic_item = "mem_size_of_val" ) ]
@@ -373,6 +375,7 @@ pub const fn size_of_val<T: ?Sized>(val: &T) -> usize {
373
375
/// assert_eq!(13, unsafe { mem::size_of_val_raw(y) });
374
376
/// ```
375
377
#[ inline]
378
+ #[ must_use]
376
379
#[ unstable( feature = "layout_for_ptr" , issue = "69835" ) ]
377
380
#[ rustc_const_unstable( feature = "const_size_of_val_raw" , issue = "46571" ) ]
378
381
pub const unsafe fn size_of_val_raw < T : ?Sized > ( val : * const T ) -> usize {
@@ -397,6 +400,7 @@ pub const unsafe fn size_of_val_raw<T: ?Sized>(val: *const T) -> usize {
397
400
/// assert_eq!(4, mem::min_align_of::<i32>());
398
401
/// ```
399
402
#[ inline]
403
+ #[ must_use]
400
404
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
401
405
#[ rustc_deprecated( reason = "use `align_of` instead" , since = "1.2.0" ) ]
402
406
pub fn min_align_of < T > ( ) -> usize {
@@ -418,6 +422,7 @@ pub fn min_align_of<T>() -> usize {
418
422
/// assert_eq!(4, mem::min_align_of_val(&5i32));
419
423
/// ```
420
424
#[ inline]
425
+ #[ must_use]
421
426
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
422
427
#[ rustc_deprecated( reason = "use `align_of_val` instead" , since = "1.2.0" ) ]
423
428
pub fn min_align_of_val < T : ?Sized > ( val : & T ) -> usize {
@@ -441,6 +446,7 @@ pub fn min_align_of_val<T: ?Sized>(val: &T) -> usize {
441
446
/// assert_eq!(4, mem::align_of::<i32>());
442
447
/// ```
443
448
#[ inline( always) ]
449
+ #[ must_use]
444
450
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
445
451
#[ rustc_promotable]
446
452
#[ rustc_const_stable( feature = "const_align_of" , since = "1.24.0" ) ]
@@ -462,6 +468,7 @@ pub const fn align_of<T>() -> usize {
462
468
/// assert_eq!(4, mem::align_of_val(&5i32));
463
469
/// ```
464
470
#[ inline]
471
+ #[ must_use]
465
472
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
466
473
#[ rustc_const_unstable( feature = "const_align_of_val" , issue = "46571" ) ]
467
474
#[ allow( deprecated) ]
@@ -507,6 +514,7 @@ pub const fn align_of_val<T: ?Sized>(val: &T) -> usize {
507
514
/// assert_eq!(4, unsafe { mem::align_of_val_raw(&5i32) });
508
515
/// ```
509
516
#[ inline]
517
+ #[ must_use]
510
518
#[ unstable( feature = "layout_for_ptr" , issue = "69835" ) ]
511
519
#[ rustc_const_unstable( feature = "const_align_of_val_raw" , issue = "46571" ) ]
512
520
pub const unsafe fn align_of_val_raw < T : ?Sized > ( val : * const T ) -> usize {
@@ -571,6 +579,7 @@ pub const unsafe fn align_of_val_raw<T: ?Sized>(val: *const T) -> usize {
571
579
/// }
572
580
/// ```
573
581
#[ inline]
582
+ #[ must_use]
574
583
#[ stable( feature = "needs_drop" , since = "1.21.0" ) ]
575
584
#[ rustc_const_stable( feature = "const_needs_drop" , since = "1.36.0" ) ]
576
585
#[ rustc_diagnostic_item = "needs_drop" ]
@@ -618,6 +627,7 @@ pub const fn needs_drop<T>() -> bool {
618
627
/// let _y: fn() = unsafe { mem::zeroed() }; // And again!
619
628
/// ```
620
629
#[ inline( always) ]
630
+ #[ must_use]
621
631
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
622
632
#[ allow( deprecated_in_future) ]
623
633
#[ allow( deprecated) ]
@@ -653,6 +663,7 @@ pub unsafe fn zeroed<T>() -> T {
653
663
/// [assume_init]: MaybeUninit::assume_init
654
664
/// [inv]: MaybeUninit#initialization-invariant
655
665
#[ inline( always) ]
666
+ #[ must_use]
656
667
#[ rustc_deprecated( since = "1.39.0" , reason = "use `mem::MaybeUninit` instead" ) ]
657
668
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
658
669
#[ allow( deprecated_in_future) ]
@@ -938,6 +949,7 @@ pub fn drop<T>(_x: T) {}
938
949
/// assert_eq!(foo_array, [10]);
939
950
/// ```
940
951
#[ inline]
952
+ #[ must_use]
941
953
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
942
954
#[ rustc_const_unstable( feature = "const_transmute_copy" , issue = "83165" ) ]
943
955
pub const unsafe fn transmute_copy < T , U > ( src : & T ) -> U {
@@ -1051,6 +1063,7 @@ pub const fn discriminant<T>(v: &T) -> Discriminant<T> {
1051
1063
/// assert_eq!(mem::variant_count::<Result<!, !>>(), 2);
1052
1064
/// ```
1053
1065
#[ inline( always) ]
1066
+ #[ must_use]
1054
1067
#[ unstable( feature = "variant_count" , issue = "73662" ) ]
1055
1068
#[ rustc_const_unstable( feature = "variant_count" , issue = "73662" ) ]
1056
1069
#[ rustc_diagnostic_item = "mem_variant_count" ]
0 commit comments