Struct once_cell::race::OnceBox [−][src]
A thread-safe cell which can be written to only once.
Implementations
impl<T> OnceBox<T>
[src]
pub const fn new() -> OnceBox<T>
[src]
Creates a new empty cell.
pub fn get(&self) -> Option<&T>
[src]
Gets a reference to the underlying value.
pub fn set(&self, value: Box<T>) -> Result<(), Box<T>>
[src]
Sets the contents of this cell to value
.
Returns Ok(())
if the cell was empty and Err(value)
if it was
full.
pub fn get_or_init<F>(&self, f: F) -> &T where
F: FnOnce() -> Box<T>,
[src]
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
.
pub fn get_or_try_init<F, E>(&self, f: F) -> Result<&T, E> where
F: FnOnce() -> Result<Box<T>, E>,
[src]
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
.
Trait Implementations
impl<T: Debug> Debug for OnceBox<T>
[src]
impl<T: Default> Default for OnceBox<T>
[src]
impl<T> Drop for OnceBox<T>
[src]
impl<T: Sync + Send> Sync for OnceBox<T>
[src]
Auto Trait Implementations
impl<T> RefUnwindSafe for OnceBox<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for OnceBox<T> where
T: Send,
T: Send,
impl<T> Unpin for OnceBox<T>
impl<T> UnwindSafe for OnceBox<T> where
T: RefUnwindSafe + UnwindSafe,
T: RefUnwindSafe + UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,