pub struct LazyCell<T, F = fn() -> T> {
state: UnsafeCell<State<T, F>>,
}
Expand description
A value which is initialized on the first access.
For a thread-safe version of this struct, see std::sync::LazyLock
.
§Poisoning
If the initialization closure passed to LazyCell::new
panics, the cell will be poisoned.
Once the cell is poisoned, any threads that attempt to access this cell (via a dereference
or via an explicit call to force()
) will panic.
This concept is similar to that of poisoning in the std::sync::poison
module. A key
difference, however, is that poisoning in LazyCell
is unrecoverable. All future accesses of
the cell from other threads will panic, whereas a type in std::sync::poison
like
std::sync::poison::Mutex
allows recovery via PoisonError::into_inner()
.
§Examples
Fields§
§state: UnsafeCell<State<T, F>>
Implementations§
Source§impl<T, F> LazyCell<T, F>where
F: FnOnce() -> T,
impl<T, F> LazyCell<T, F>where
F: FnOnce() -> T,
1.80.0 (const: 1.80.0) · Sourcepub const fn new(f: F) -> LazyCell<T, F>
pub const fn new(f: F) -> LazyCell<T, F>
Creates a new lazy value with the given initializing function.
§Examples
Sourcepub const fn into_inner(this: LazyCell<T, F>) -> Result<T, F>
🔬This is a nightly-only experimental API. (lazy_cell_into_inner
#125623)
pub const fn into_inner(this: LazyCell<T, F>) -> Result<T, F>
lazy_cell_into_inner
#125623)1.80.0 · Sourcepub fn force(this: &LazyCell<T, F>) -> &T
pub fn force(this: &LazyCell<T, F>) -> &T
Forces the evaluation of this lazy value and returns a reference to the result.
This is equivalent to the Deref
impl, but is explicit.
§Panics
If the initialization closure panics (the one that is passed to the new()
method), the
panic is propagated to the caller, and the cell becomes poisoned. This will cause all future
accesses of the cell (via force()
or a dereference) to panic.
§Examples
Sourcepub fn force_mut(this: &mut LazyCell<T, F>) -> &mut T
🔬This is a nightly-only experimental API. (lazy_get
#129333)
pub fn force_mut(this: &mut LazyCell<T, F>) -> &mut T
lazy_get
#129333)Forces the evaluation of this lazy value and returns a mutable reference to the result.
§Panics
If the initialization closure panics (the one that is passed to the new()
method), the
panic is propagated to the caller, and the cell becomes poisoned. This will cause all future
accesses of the cell (via force()
or a dereference) to panic.
§Examples
Source§impl<T, F> LazyCell<T, F>
impl<T, F> LazyCell<T, F>
Sourcepub fn get_mut(this: &mut LazyCell<T, F>) -> Option<&mut T>
🔬This is a nightly-only experimental API. (lazy_get
#129333)
pub fn get_mut(this: &mut LazyCell<T, F>) -> Option<&mut T>
lazy_get
#129333)Returns a mutable reference to the value if initialized. Otherwise (if uninitialized or
poisoned), returns None
.
§Examples
Trait Implementations§
1.80.0 · Source§impl<T, F> Deref for LazyCell<T, F>where
F: FnOnce() -> T,
impl<T, F> Deref for LazyCell<T, F>where
F: FnOnce() -> T,
Auto Trait Implementations§
impl<T, F = fn() -> T> !Freeze for LazyCell<T, F>
impl<T, F = fn() -> T> !RefUnwindSafe for LazyCell<T, F>
impl<T, F> Send for LazyCell<T, F>
impl<T, F = fn() -> T> !Sync for LazyCell<T, F>
impl<T, F> Unpin for LazyCell<T, F>
impl<T, F> UnwindSafe for LazyCell<T, F>where
F: UnwindSafe,
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> SizedTypeProperties for T
impl<T> SizedTypeProperties for T
Source§#[doc(hidden)] const IS_ZST: bool = _
#[doc(hidden)] const IS_ZST: bool = _
sized_type_properties
)Source§#[doc(hidden)] const LAYOUT: Layout = _
#[doc(hidden)] const LAYOUT: Layout = _
sized_type_properties
)Source§#[doc(hidden)] const MAX_SLICE_LEN: usize = _
#[doc(hidden)] const MAX_SLICE_LEN: usize = _
sized_type_properties
)[Self]
. Read more