Skip to content

Commit 51023b5

Browse files
library: Destabilize Lazy{Cell,Lock}::{force,deref}_mut
1 parent a0f4a4b commit 51023b5

File tree

5 files changed

+9
-28
lines changed

5 files changed

+9
-28
lines changed

core/src/cell/lazy.rs

+3-14
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use super::UnsafeCell;
22
use crate::hint::unreachable_unchecked;
3-
use crate::ops::{Deref, DerefMut};
3+
use crate::ops::Deref;
44
use crate::{fmt, mem};
55

66
enum State<T, F> {
@@ -122,11 +122,10 @@ impl<T, F: FnOnce() -> T> LazyCell<T, F> {
122122
/// Forces the evaluation of this lazy value and returns a mutable reference to
123123
/// the result.
124124
///
125-
/// This is equivalent to the `DerefMut` impl, but is explicit.
126-
///
127125
/// # Examples
128126
///
129127
/// ```
128+
/// #![feature(lazy_get)]
130129
/// use std::cell::LazyCell;
131130
///
132131
/// let mut lazy = LazyCell::new(|| 92);
@@ -135,11 +134,9 @@ impl<T, F: FnOnce() -> T> LazyCell<T, F> {
135134
/// assert_eq!(*p, 92);
136135
/// *p = 44;
137136
/// assert_eq!(*lazy, 44);
138-
/// *lazy = 55; // Using `DerefMut`
139-
/// assert_eq!(*lazy, 55);
140137
/// ```
141138
#[inline]
142-
#[stable(feature = "lazy_deref_mut", since = "CURRENT_RUSTC_VERSION")]
139+
#[unstable(feature = "lazy_get", issue = "129333")]
143140
pub fn force_mut(this: &mut LazyCell<T, F>) -> &mut T {
144141
#[cold]
145142
/// # Safety
@@ -286,14 +283,6 @@ impl<T, F: FnOnce() -> T> Deref for LazyCell<T, F> {
286283
}
287284
}
288285

289-
#[stable(feature = "lazy_deref_mut", since = "CURRENT_RUSTC_VERSION")]
290-
impl<T, F: FnOnce() -> T> DerefMut for LazyCell<T, F> {
291-
#[inline]
292-
fn deref_mut(&mut self) -> &mut T {
293-
LazyCell::force_mut(self)
294-
}
295-
}
296-
297286
#[stable(feature = "lazy_cell", since = "1.80.0")]
298287
impl<T: Default> Default for LazyCell<T> {
299288
/// Creates a new lazy value using `Default` as the initializing function.

core/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,7 @@
172172
#![feature(is_ascii_octdigit)]
173173
#![feature(is_val_statically_known)]
174174
#![feature(isqrt)]
175+
#![feature(lazy_get)]
175176
#![feature(link_cfg)]
176177
#![feature(offset_of_enum)]
177178
#![feature(panic_internals)]

core/tests/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@
7777
#![feature(iterator_try_collect)]
7878
#![feature(iterator_try_reduce)]
7979
#![feature(layout_for_ptr)]
80+
#![feature(lazy_get)]
8081
#![feature(maybe_uninit_fill)]
8182
#![feature(maybe_uninit_uninit_array_transpose)]
8283
#![feature(maybe_uninit_write_slice)]

std/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -336,6 +336,7 @@
336336
#![feature(hasher_prefixfree_extras)]
337337
#![feature(hashmap_internals)]
338338
#![feature(ip)]
339+
#![feature(lazy_get)]
339340
#![feature(maybe_uninit_slice)]
340341
#![feature(maybe_uninit_write_slice)]
341342
#![feature(panic_can_unwind)]

std/src/sync/lazy_lock.rs

+3-14
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use super::once::ExclusiveState;
22
use crate::cell::UnsafeCell;
33
use crate::mem::ManuallyDrop;
4-
use crate::ops::{Deref, DerefMut};
4+
use crate::ops::Deref;
55
use crate::panic::{RefUnwindSafe, UnwindSafe};
66
use crate::sync::Once;
77
use crate::{fmt, ptr};
@@ -137,11 +137,10 @@ impl<T, F: FnOnce() -> T> LazyLock<T, F> {
137137
/// Forces the evaluation of this lazy value and returns a mutable reference to
138138
/// the result.
139139
///
140-
/// This is equivalent to the `DerefMut` impl, but is explicit.
141-
///
142140
/// # Examples
143141
///
144142
/// ```
143+
/// #![feature(lazy_get)]
145144
/// use std::sync::LazyLock;
146145
///
147146
/// let mut lazy = LazyLock::new(|| 92);
@@ -150,11 +149,9 @@ impl<T, F: FnOnce() -> T> LazyLock<T, F> {
150149
/// assert_eq!(*p, 92);
151150
/// *p = 44;
152151
/// assert_eq!(*lazy, 44);
153-
/// *lazy = 55; // Using `DerefMut`
154-
/// assert_eq!(*lazy, 55);
155152
/// ```
156153
#[inline]
157-
#[stable(feature = "lazy_deref_mut", since = "CURRENT_RUSTC_VERSION")]
154+
#[unstable(feature = "lazy_get", issue = "129333")]
158155
pub fn force_mut(this: &mut LazyLock<T, F>) -> &mut T {
159156
#[cold]
160157
/// # Safety
@@ -317,14 +314,6 @@ impl<T, F: FnOnce() -> T> Deref for LazyLock<T, F> {
317314
}
318315
}
319316

320-
#[stable(feature = "lazy_deref_mut", since = "CURRENT_RUSTC_VERSION")]
321-
impl<T, F: FnOnce() -> T> DerefMut for LazyLock<T, F> {
322-
#[inline]
323-
fn deref_mut(&mut self) -> &mut T {
324-
LazyLock::force_mut(self)
325-
}
326-
}
327-
328317
#[stable(feature = "lazy_cell", since = "1.80.0")]
329318
impl<T: Default> Default for LazyLock<T> {
330319
/// Creates a new lazy value using `Default` as the initializing function.

0 commit comments

Comments
 (0)