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 with_value(value: Box<T>) -> OnceBox<T>
pub fn with_value(value: Box<T>) -> OnceBox<T>
Creates a new cell with the given value.
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) -> &T
pub fn get_or_init<F>(&self, f: F) -> &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>
pub fn get_or_try_init<F, E>(&self, f: F) -> Result<&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> Sync for OnceBox<T>
Auto Trait Implementations§
impl<T> !Freeze for OnceBox<T>
impl<T> RefUnwindSafe for OnceBox<T>where
T: RefUnwindSafe,
impl<T> Send for OnceBox<T>where
T: Send,
impl<T> Unpin for OnceBox<T>
impl<T> UnwindSafe for OnceBox<T>where
T: RefUnwindSafe + 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
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
fn into_sample(self) -> T
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<R, P> ReadPrimitive<R> for P
impl<R, P> ReadPrimitive<R> for P
Source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as
ReadEndian::read_from_little_endian().