pub struct OnceRef<'a, T> { /* private fields */ }
Expand description
A thread-safe cell which can be written to only once.
Implementations§
§impl<'a, T> OnceRef<'a, T>
impl<'a, T> OnceRef<'a, T>
pub fn set(&self, value: &'a T) -> Result<(), ()>
pub fn set(&self, value: &'a T) -> Result<(), ()>
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) -> &'a Twhere
F: FnOnce() -> &'a T,
pub fn get_or_init<F>(&self, f: F) -> &'a Twhere F: FnOnce() -> &'a 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<&'a T, E>where
F: FnOnce() -> Result<&'a T, E>,
pub fn get_or_try_init<F, E>(&self, f: F) -> Result<&'a T, E>where F: FnOnce() -> Result<&'a 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<'a, T> Sync for OnceRef<'a, T>where T: Sync,
Auto Trait Implementations§
impl<'a, T> !RefUnwindSafe for OnceRef<'a, T>
impl<'a, T> Send for OnceRef<'a, T>where T: Sync,
impl<'a, T> Unpin for OnceRef<'a, T>
impl<'a, T> UnwindSafe for OnceRef<'a, T>where T: RefUnwindSafe,
Blanket Implementations§
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> RoundFrom<T> for T
impl<T> RoundFrom<T> for T
§fn round_from(x: T) -> T
fn round_from(x: T) -> T
Performs the conversion.
§impl<T, U> RoundInto<U> for Twhere
U: RoundFrom<T>,
impl<T, U> RoundInto<U> for Twhere U: RoundFrom<T>,
§fn round_into(self) -> U
fn round_into(self) -> U
Performs the conversion.