pub struct OnceBox<T> { /* private fields */ }
Expand description
A thread-safe cell which can be written to only once.
Implementations§
source§impl<T> OnceBox<T>
impl<T> OnceBox<T>
sourcepub fn set(&self, value: Box<T>) -> Result<(), Box<T>>
pub fn set(&self, value: Box<T>) -> Result<(), Box<T>>
Sets the contents of this cell to value
.
Returns Ok(())
if the cell was empty and Err(value)
if it was
full.
sourcepub fn get_or_init<F>(&self, f: F) -> &Twhere
F: FnOnce() -> Box<T>,
pub fn get_or_init<F>(&self, f: F) -> &Twhere
F: FnOnce() -> Box<T>,
Gets the contents of the cell, initializing it with f
if the cell was
empty.
If several threads concurrently run get_or_init
, more than one f
can
be called. However, all threads will return the same value, produced by
some f
.
sourcepub fn get_or_try_init<F, E>(&self, f: F) -> Result<&T, E>where
F: FnOnce() -> Result<Box<T>, E>,
pub fn get_or_try_init<F, E>(&self, f: F) -> Result<&T, E>where
F: FnOnce() -> Result<Box<T>, E>,
Gets the contents of the cell, initializing it with f
if
the cell was empty. If the cell was empty and f
failed, an
error is returned.
If several threads concurrently run get_or_init
, more than one f
can
be called. However, all threads will return the same value, produced by
some f
.