We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90baadd commit d59c784Copy full SHA for d59c784
src/inline_lazy.rs
@@ -15,7 +15,7 @@ use self::std::sync::Once;
15
#[allow(deprecated)]
16
pub use self::std::sync::ONCE_INIT;
17
18
-// FIXME: Replace Option<T> with MaybeInitialized<T>
+// FIXME: Replace Option<T> with MaybeUninit<T> (stable since 1.36.0)
19
pub struct Lazy<T: Sync>(Cell<Option<T>>, Once);
20
21
impl<T: Sync> Lazy<T> {
0 commit comments