Skip to content

Commit 58899c4

Browse files
committed
Auto merge of #90434 - matthiaskrgr:rollup-xbn393a, r=matthiaskrgr
Rollup of 8 pull requests Successful merges: - #89446 (Add paragraph to ControlFlow docs to menion it works with the ? operator (#88715)) - #89677 (Stabilize `is_symlink()` for `Metadata` and `Path`) - #89833 (Add #[must_use] to Rc::downgrade) - #89835 (Add #[must_use] to expensive computations) - #89839 (Add #[must_use] to mem/ptr functions) - #89897 (Add #[must_use] to remaining core functions) - #89951 (Stabilize `option_result_unwrap_unchecked`) - #90427 (Add #[must_use] to alloc functions that would leak memory) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
2 parents 38b01d9 + ff6d8ec commit 58899c4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+129
-19
lines changed

library/alloc/src/alloc.rs

+3
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ pub use std::alloc::Global;
8181
/// }
8282
/// ```
8383
#[stable(feature = "global_alloc", since = "1.28.0")]
84+
#[must_use = "losing the pointer will leak memory"]
8485
#[inline]
8586
pub unsafe fn alloc(layout: Layout) -> *mut u8 {
8687
unsafe { __rust_alloc(layout.size(), layout.align()) }
@@ -117,6 +118,7 @@ pub unsafe fn dealloc(ptr: *mut u8, layout: Layout) {
117118
///
118119
/// See [`GlobalAlloc::realloc`].
119120
#[stable(feature = "global_alloc", since = "1.28.0")]
121+
#[must_use = "losing the pointer will leak memory"]
120122
#[inline]
121123
pub unsafe fn realloc(ptr: *mut u8, layout: Layout, new_size: usize) -> *mut u8 {
122124
unsafe { __rust_realloc(ptr, layout.size(), layout.align(), new_size) }
@@ -150,6 +152,7 @@ pub unsafe fn realloc(ptr: *mut u8, layout: Layout, new_size: usize) -> *mut u8
150152
/// }
151153
/// ```
152154
#[stable(feature = "global_alloc", since = "1.28.0")]
155+
#[must_use = "losing the pointer will leak memory"]
153156
#[inline]
154157
pub unsafe fn alloc_zeroed(layout: Layout) -> *mut u8 {
155158
unsafe { __rust_alloc_zeroed(layout.size(), layout.align()) }

library/alloc/src/collections/btree/set.rs

+8
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,8 @@ pub struct Range<'a, T: 'a> {
137137
/// See its documentation for more.
138138
///
139139
/// [`difference`]: BTreeSet::difference
140+
#[must_use = "this returns the difference as an iterator, \
141+
without modifying either input set"]
140142
#[stable(feature = "rust1", since = "1.0.0")]
141143
pub struct Difference<'a, T: 'a> {
142144
inner: DifferenceInner<'a, T>,
@@ -169,6 +171,8 @@ impl<T: fmt::Debug> fmt::Debug for Difference<'_, T> {
169171
/// [`BTreeSet`]. See its documentation for more.
170172
///
171173
/// [`symmetric_difference`]: BTreeSet::symmetric_difference
174+
#[must_use = "this returns the difference as an iterator, \
175+
without modifying either input set"]
172176
#[stable(feature = "rust1", since = "1.0.0")]
173177
pub struct SymmetricDifference<'a, T: 'a>(MergeIterInner<Iter<'a, T>>);
174178

@@ -185,6 +189,8 @@ impl<T: fmt::Debug> fmt::Debug for SymmetricDifference<'_, T> {
185189
/// See its documentation for more.
186190
///
187191
/// [`intersection`]: BTreeSet::intersection
192+
#[must_use = "this returns the intersection as an iterator, \
193+
without modifying either input set"]
188194
#[stable(feature = "rust1", since = "1.0.0")]
189195
pub struct Intersection<'a, T: 'a> {
190196
inner: IntersectionInner<'a, T>,
@@ -217,6 +223,8 @@ impl<T: fmt::Debug> fmt::Debug for Intersection<'_, T> {
217223
/// See its documentation for more.
218224
///
219225
/// [`union`]: BTreeSet::union
226+
#[must_use = "this returns the union as an iterator, \
227+
without modifying either input set"]
220228
#[stable(feature = "rust1", since = "1.0.0")]
221229
pub struct Union<'a, T: 'a>(MergeIterInner<Iter<'a, T>>);
222230

library/alloc/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,6 @@
112112
#![feature(maybe_uninit_slice)]
113113
#![cfg_attr(test, feature(new_uninit))]
114114
#![feature(nonnull_slice_from_raw_parts)]
115-
#![feature(option_result_unwrap_unchecked)]
116115
#![feature(pattern)]
117116
#![feature(ptr_internals)]
118117
#![feature(receiver_trait)]

library/alloc/src/rc.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
//! use std::rc::Rc;
4242
//!
4343
//! let my_rc = Rc::new(());
44-
//! Rc::downgrade(&my_rc);
44+
//! let my_weak = Rc::downgrade(&my_rc);
4545
//! ```
4646
//!
4747
//! `Rc<T>`'s implementations of traits like `Clone` may also be called using
@@ -889,6 +889,8 @@ impl<T: ?Sized> Rc<T> {
889889
///
890890
/// let weak_five = Rc::downgrade(&five);
891891
/// ```
892+
#[must_use = "this returns a new `Weak` pointer, \
893+
without modifying the original `Rc`"]
892894
#[stable(feature = "rc_weak", since = "1.4.0")]
893895
pub fn downgrade(this: &Self) -> Weak<T> {
894896
this.inner().inc_weak();

library/alloc/src/string.rs

+2
Original file line numberDiff line numberDiff line change
@@ -552,6 +552,7 @@ impl String {
552552
///
553553
/// assert_eq!("Hello �World", output);
554554
/// ```
555+
#[must_use]
555556
#[cfg(not(no_global_oom_handling))]
556557
#[stable(feature = "rust1", since = "1.0.0")]
557558
pub fn from_utf8_lossy(v: &[u8]) -> Cow<'_, str> {
@@ -646,6 +647,7 @@ impl String {
646647
/// String::from_utf16_lossy(v));
647648
/// ```
648649
#[cfg(not(no_global_oom_handling))]
650+
#[must_use]
649651
#[inline]
650652
#[stable(feature = "rust1", since = "1.0.0")]
651653
pub fn from_utf16_lossy(v: &[u16]) -> String {

library/alloc/src/sync.rs

+1
Original file line numberDiff line numberDiff line change
@@ -804,6 +804,7 @@ impl<T: ?Sized> Arc<T> {
804804
/// let x_ptr = Arc::into_raw(x);
805805
/// assert_eq!(unsafe { &*x_ptr }, "hello");
806806
/// ```
807+
#[must_use = "losing the pointer will leak memory"]
807808
#[stable(feature = "rc_raw", since = "1.17.0")]
808809
pub fn into_raw(this: Self) -> *const T {
809810
let ptr = Self::as_ptr(&this);

library/alloc/tests/str.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1031,7 +1031,7 @@ fn test_split_at_mut() {
10311031
#[should_panic]
10321032
fn test_split_at_boundscheck() {
10331033
let s = "ศไทย中华Việt Nam";
1034-
s.split_at(1);
1034+
let _ = s.split_at(1);
10351035
}
10361036

10371037
#[test]

library/core/src/alloc/layout.rs

+4
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ impl Layout {
104104
/// The minimum size in bytes for a memory block of this layout.
105105
#[stable(feature = "alloc_layout", since = "1.28.0")]
106106
#[rustc_const_stable(feature = "const_alloc_layout", since = "1.50.0")]
107+
#[must_use]
107108
#[inline]
108109
pub const fn size(&self) -> usize {
109110
self.size_
@@ -137,6 +138,7 @@ impl Layout {
137138
/// allocate backing structure for `T` (which could be a trait
138139
/// or other unsized type like a slice).
139140
#[stable(feature = "alloc_layout", since = "1.28.0")]
141+
#[must_use]
140142
#[inline]
141143
pub fn for_value<T: ?Sized>(t: &T) -> Self {
142144
let (size, align) = (mem::size_of_val(t), mem::align_of_val(t));
@@ -171,6 +173,7 @@ impl Layout {
171173
/// [trait object]: ../../book/ch17-02-trait-objects.html
172174
/// [extern type]: ../../unstable-book/language-features/extern-types.html
173175
#[unstable(feature = "layout_for_ptr", issue = "69835")]
176+
#[must_use]
174177
pub unsafe fn for_value_raw<T: ?Sized>(t: *const T) -> Self {
175178
// SAFETY: we pass along the prerequisites of these functions to the caller
176179
let (size, align) = unsafe { (mem::size_of_val_raw(t), mem::align_of_val_raw(t)) };
@@ -187,6 +190,7 @@ impl Layout {
187190
/// some other means.
188191
#[unstable(feature = "alloc_layout_extra", issue = "55724")]
189192
#[rustc_const_unstable(feature = "alloc_layout_extra", issue = "55724")]
193+
#[must_use]
190194
#[inline]
191195
pub const fn dangling(&self) -> NonNull<u8> {
192196
// SAFETY: align is guaranteed to be non-zero

library/core/src/any.rs

+3
Original file line numberDiff line numberDiff line change
@@ -458,6 +458,7 @@ impl TypeId {
458458
/// assert_eq!(is_string(&0), false);
459459
/// assert_eq!(is_string(&"cookie monster".to_string()), true);
460460
/// ```
461+
#[must_use]
461462
#[stable(feature = "rust1", since = "1.0.0")]
462463
#[rustc_const_unstable(feature = "const_type_id", issue = "77125")]
463464
pub const fn of<T: ?Sized + 'static>() -> TypeId {
@@ -492,6 +493,7 @@ impl TypeId {
492493
/// "core::option::Option<alloc::string::String>",
493494
/// );
494495
/// ```
496+
#[must_use]
495497
#[stable(feature = "type_name", since = "1.38.0")]
496498
#[rustc_const_unstable(feature = "const_type_name", issue = "63084")]
497499
pub const fn type_name<T: ?Sized>() -> &'static str {
@@ -534,6 +536,7 @@ pub const fn type_name<T: ?Sized>() -> &'static str {
534536
/// let y = 1.0;
535537
/// println!("{}", type_name_of_val(&y));
536538
/// ```
539+
#[must_use]
537540
#[unstable(feature = "type_name_of_val", issue = "66359")]
538541
#[rustc_const_unstable(feature = "const_type_name", issue = "63084")]
539542
pub const fn type_name_of_val<T: ?Sized>(_val: &T) -> &'static str {

library/core/src/ascii.rs

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ use crate::str::from_utf8_unchecked;
1818
///
1919
/// This `struct` is created by the [`escape_default`] function. See its
2020
/// documentation for more.
21+
#[must_use = "iterators are lazy and do nothing unless consumed"]
2122
#[stable(feature = "rust1", since = "1.0.0")]
2223
#[derive(Clone)]
2324
pub struct EscapeDefault {

library/core/src/cell.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1335,6 +1335,7 @@ impl<'b, T: ?Sized> Ref<'b, T> {
13351335
/// with the widespread use of `r.borrow().clone()` to clone the contents of
13361336
/// a `RefCell`.
13371337
#[stable(feature = "cell_extras", since = "1.15.0")]
1338+
#[must_use]
13381339
#[inline]
13391340
pub fn clone(orig: &Ref<'b, T>) -> Ref<'b, T> {
13401341
Ref { value: orig.value, borrow: orig.borrow.clone() }

library/core/src/char/decode.rs

+1
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ impl<I: Iterator<Item = u16>> Iterator for DecodeUtf16<I> {
128128

129129
impl DecodeUtf16Error {
130130
/// Returns the unpaired surrogate which caused this error.
131+
#[must_use]
131132
#[stable(feature = "decode_utf16", since = "1.9.0")]
132133
pub fn unpaired_surrogate(&self) -> u16 {
133134
self.code

library/core/src/default.rs

+1
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ pub trait Default: Sized {
155155
/// }
156156
/// ```
157157
#[unstable(feature = "default_free_fn", issue = "73014")]
158+
#[must_use]
158159
#[inline]
159160
pub fn default<T: Default>() -> T {
160161
Default::default()

library/core/src/fmt/mod.rs

+9
Original file line numberDiff line numberDiff line change
@@ -1604,6 +1604,7 @@ impl<'a> Formatter<'a> {
16041604
}
16051605

16061606
/// Flags for formatting
1607+
#[must_use]
16071608
#[stable(feature = "rust1", since = "1.0.0")]
16081609
#[rustc_deprecated(
16091610
since = "1.24.0",
@@ -1641,6 +1642,7 @@ impl<'a> Formatter<'a> {
16411642
/// assert_eq!(&format!("{:G>3}", Foo), "GGG");
16421643
/// assert_eq!(&format!("{:t>6}", Foo), "tttttt");
16431644
/// ```
1645+
#[must_use]
16441646
#[stable(feature = "fmt_flags", since = "1.5.0")]
16451647
pub fn fill(&self) -> char {
16461648
self.fill
@@ -1677,6 +1679,7 @@ impl<'a> Formatter<'a> {
16771679
/// assert_eq!(&format!("{:^}", Foo), "center");
16781680
/// assert_eq!(&format!("{}", Foo), "into the void");
16791681
/// ```
1682+
#[must_use]
16801683
#[stable(feature = "fmt_flags_align", since = "1.28.0")]
16811684
pub fn align(&self) -> Option<Alignment> {
16821685
match self.align {
@@ -1711,6 +1714,7 @@ impl<'a> Formatter<'a> {
17111714
/// assert_eq!(&format!("{:10}", Foo(23)), "Foo(23) ");
17121715
/// assert_eq!(&format!("{}", Foo(23)), "Foo(23)");
17131716
/// ```
1717+
#[must_use]
17141718
#[stable(feature = "fmt_flags", since = "1.5.0")]
17151719
pub fn width(&self) -> Option<usize> {
17161720
self.width
@@ -1741,6 +1745,7 @@ impl<'a> Formatter<'a> {
17411745
/// assert_eq!(&format!("{:.4}", Foo(23.2)), "Foo(23.2000)");
17421746
/// assert_eq!(&format!("{}", Foo(23.2)), "Foo(23.20)");
17431747
/// ```
1748+
#[must_use]
17441749
#[stable(feature = "fmt_flags", since = "1.5.0")]
17451750
pub fn precision(&self) -> Option<usize> {
17461751
self.precision
@@ -1771,6 +1776,7 @@ impl<'a> Formatter<'a> {
17711776
/// assert_eq!(&format!("{:+}", Foo(23)), "Foo(+23)");
17721777
/// assert_eq!(&format!("{}", Foo(23)), "Foo(23)");
17731778
/// ```
1779+
#[must_use]
17741780
#[stable(feature = "fmt_flags", since = "1.5.0")]
17751781
pub fn sign_plus(&self) -> bool {
17761782
self.flags & (1 << FlagV1::SignPlus as u32) != 0
@@ -1799,6 +1805,7 @@ impl<'a> Formatter<'a> {
17991805
/// assert_eq!(&format!("{:-}", Foo(23)), "-Foo(23)");
18001806
/// assert_eq!(&format!("{}", Foo(23)), "Foo(23)");
18011807
/// ```
1808+
#[must_use]
18021809
#[stable(feature = "fmt_flags", since = "1.5.0")]
18031810
pub fn sign_minus(&self) -> bool {
18041811
self.flags & (1 << FlagV1::SignMinus as u32) != 0
@@ -1826,6 +1833,7 @@ impl<'a> Formatter<'a> {
18261833
/// assert_eq!(&format!("{:#}", Foo(23)), "Foo(23)");
18271834
/// assert_eq!(&format!("{}", Foo(23)), "23");
18281835
/// ```
1836+
#[must_use]
18291837
#[stable(feature = "fmt_flags", since = "1.5.0")]
18301838
pub fn alternate(&self) -> bool {
18311839
self.flags & (1 << FlagV1::Alternate as u32) != 0
@@ -1851,6 +1859,7 @@ impl<'a> Formatter<'a> {
18511859
///
18521860
/// assert_eq!(&format!("{:04}", Foo(23)), "23");
18531861
/// ```
1862+
#[must_use]
18541863
#[stable(feature = "fmt_flags", since = "1.5.0")]
18551864
pub fn sign_aware_zero_pad(&self) -> bool {
18561865
self.flags & (1 << FlagV1::SignAwareZeroPad as u32) != 0

library/core/src/future/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ where
9090
#[lang = "get_context"]
9191
#[doc(hidden)]
9292
#[unstable(feature = "gen_future", issue = "50547")]
93+
#[must_use]
9394
#[inline]
9495
pub unsafe fn get_context<'a, 'b>(cx: ResumeTy) -> &'a mut Context<'b> {
9596
// SAFETY: the caller must guarantee that `cx.0` is a valid pointer

library/core/src/iter/sources/empty.rs

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ pub const fn empty<T>() -> Empty<T> {
2525
/// An iterator that yields nothing.
2626
///
2727
/// This `struct` is created by the [`empty()`] function. See its documentation for more.
28+
#[must_use = "iterators are lazy and do nothing unless consumed"]
2829
#[stable(feature = "iter_empty", since = "1.2.0")]
2930
pub struct Empty<T>(marker::PhantomData<T>);
3031

library/core/src/mem/mod.rs

+13
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,7 @@ pub fn forget_unsized<T: ?Sized>(t: T) {
296296
///
297297
/// [alignment]: align_of
298298
#[inline(always)]
299+
#[must_use]
299300
#[stable(feature = "rust1", since = "1.0.0")]
300301
#[rustc_promotable]
301302
#[rustc_const_stable(feature = "const_size_of", since = "1.24.0")]
@@ -324,6 +325,7 @@ pub const fn size_of<T>() -> usize {
324325
/// assert_eq!(13, mem::size_of_val(y));
325326
/// ```
326327
#[inline]
328+
#[must_use]
327329
#[stable(feature = "rust1", since = "1.0.0")]
328330
#[rustc_const_unstable(feature = "const_size_of_val", issue = "46571")]
329331
#[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 {
373375
/// assert_eq!(13, unsafe { mem::size_of_val_raw(y) });
374376
/// ```
375377
#[inline]
378+
#[must_use]
376379
#[unstable(feature = "layout_for_ptr", issue = "69835")]
377380
#[rustc_const_unstable(feature = "const_size_of_val_raw", issue = "46571")]
378381
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 {
397400
/// assert_eq!(4, mem::min_align_of::<i32>());
398401
/// ```
399402
#[inline]
403+
#[must_use]
400404
#[stable(feature = "rust1", since = "1.0.0")]
401405
#[rustc_deprecated(reason = "use `align_of` instead", since = "1.2.0")]
402406
pub fn min_align_of<T>() -> usize {
@@ -418,6 +422,7 @@ pub fn min_align_of<T>() -> usize {
418422
/// assert_eq!(4, mem::min_align_of_val(&5i32));
419423
/// ```
420424
#[inline]
425+
#[must_use]
421426
#[stable(feature = "rust1", since = "1.0.0")]
422427
#[rustc_deprecated(reason = "use `align_of_val` instead", since = "1.2.0")]
423428
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 {
441446
/// assert_eq!(4, mem::align_of::<i32>());
442447
/// ```
443448
#[inline(always)]
449+
#[must_use]
444450
#[stable(feature = "rust1", since = "1.0.0")]
445451
#[rustc_promotable]
446452
#[rustc_const_stable(feature = "const_align_of", since = "1.24.0")]
@@ -462,6 +468,7 @@ pub const fn align_of<T>() -> usize {
462468
/// assert_eq!(4, mem::align_of_val(&5i32));
463469
/// ```
464470
#[inline]
471+
#[must_use]
465472
#[stable(feature = "rust1", since = "1.0.0")]
466473
#[rustc_const_unstable(feature = "const_align_of_val", issue = "46571")]
467474
#[allow(deprecated)]
@@ -507,6 +514,7 @@ pub const fn align_of_val<T: ?Sized>(val: &T) -> usize {
507514
/// assert_eq!(4, unsafe { mem::align_of_val_raw(&5i32) });
508515
/// ```
509516
#[inline]
517+
#[must_use]
510518
#[unstable(feature = "layout_for_ptr", issue = "69835")]
511519
#[rustc_const_unstable(feature = "const_align_of_val_raw", issue = "46571")]
512520
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 {
571579
/// }
572580
/// ```
573581
#[inline]
582+
#[must_use]
574583
#[stable(feature = "needs_drop", since = "1.21.0")]
575584
#[rustc_const_stable(feature = "const_needs_drop", since = "1.36.0")]
576585
#[rustc_diagnostic_item = "needs_drop"]
@@ -618,6 +627,7 @@ pub const fn needs_drop<T>() -> bool {
618627
/// let _y: fn() = unsafe { mem::zeroed() }; // And again!
619628
/// ```
620629
#[inline(always)]
630+
#[must_use]
621631
#[stable(feature = "rust1", since = "1.0.0")]
622632
#[allow(deprecated_in_future)]
623633
#[allow(deprecated)]
@@ -653,6 +663,7 @@ pub unsafe fn zeroed<T>() -> T {
653663
/// [assume_init]: MaybeUninit::assume_init
654664
/// [inv]: MaybeUninit#initialization-invariant
655665
#[inline(always)]
666+
#[must_use]
656667
#[rustc_deprecated(since = "1.39.0", reason = "use `mem::MaybeUninit` instead")]
657668
#[stable(feature = "rust1", since = "1.0.0")]
658669
#[allow(deprecated_in_future)]
@@ -938,6 +949,7 @@ pub fn drop<T>(_x: T) {}
938949
/// assert_eq!(foo_array, [10]);
939950
/// ```
940951
#[inline]
952+
#[must_use]
941953
#[stable(feature = "rust1", since = "1.0.0")]
942954
#[rustc_const_unstable(feature = "const_transmute_copy", issue = "83165")]
943955
pub const unsafe fn transmute_copy<T, U>(src: &T) -> U {
@@ -1051,6 +1063,7 @@ pub const fn discriminant<T>(v: &T) -> Discriminant<T> {
10511063
/// assert_eq!(mem::variant_count::<Result<!, !>>(), 2);
10521064
/// ```
10531065
#[inline(always)]
1066+
#[must_use]
10541067
#[unstable(feature = "variant_count", issue = "73662")]
10551068
#[rustc_const_unstable(feature = "variant_count", issue = "73662")]
10561069
#[rustc_diagnostic_item = "mem_variant_count"]

0 commit comments

Comments
 (0)