pub struct Once<T> { /* private fields */ }
Expand description
A primitive that provides lazy one-time initialization.
Unlike its std::sync
equivalent, this is generalized such that the closure returns a
value to be stored by the Once
(std::sync::Once
can be trivially emulated with
Once<()>
).
Because Once::new
is const
, this primitive may be used to safely initialize statics.
Examples
use spin;
static START: spin::Once<()> = spin::Once::new();
START.call_once(|| {
// run initialization here
});
Implementations
sourceimpl<T> Once<T>
impl<T> Once<T>
sourcepub const fn initialized(data: T) -> Once<T>
pub const fn initialized(data: T) -> Once<T>
Creates a new initialized Once
.
sourcepub fn call_once<F: FnOnce() -> T>(&self, f: F) -> &T
pub fn call_once<F: FnOnce() -> T>(&self, f: F) -> &T
Performs an initialization routine once and only once. The given closure
will be executed if this is the first time call_once
has been called,
and otherwise the routine will not be invoked.
This method will block the calling thread if another initialization routine is currently running.
When this function returns, it is guaranteed that some initialization has run and completed (it may not be the closure specified). The returned pointer will point to the result from the closure that was run.
Panics
This function will panic if the Once
previously panicked while attempting
to initialize. This is similar to the poisoning behaviour of std::sync
’s
primitives.
Examples
use spin;
static INIT: spin::Once<usize> = spin::Once::new();
fn get_cached_val() -> usize {
*INIT.call_once(expensive_computation)
}
fn expensive_computation() -> usize {
// ...
}
sourcepub fn get(&self) -> Option<&T>
pub fn get(&self) -> Option<&T>
Returns a reference to the inner value if the Once
has been initialized.
sourcepub fn try_into_inner(self) -> Option<T>
pub fn try_into_inner(self) -> Option<T>
sourcepub fn is_completed(&self) -> bool
pub fn is_completed(&self) -> bool
Returns a reference to the inner value if the Once
has been initialized.
sourcepub fn wait(&self) -> &T
pub fn wait(&self) -> &T
Spins until the Once
contains a value.
Note that in releases prior to 0.7
, this function had the behaviour of Once::poll
.
Panics
This function will panic if the Once
previously panicked while attempting
to initialize. This is similar to the poisoning behaviour of std::sync
’s
primitives.
sourcepub fn poll(&self) -> Option<&T>
pub fn poll(&self) -> Option<&T>
Like Once::get
, but will spin if the Once
is in the process of being
initialized. If initialization has not even begun, None
will be returned.
Note that in releases prior to 0.7
, this function was named wait
.
Panics
This function will panic if the Once
previously panicked while attempting
to initialize. This is similar to the poisoning behaviour of std::sync
’s
primitives.
Trait Implementations
impl<T: Send> Send for Once<T>
impl<T: Send + Sync> Sync for Once<T>
Auto Trait Implementations
impl<T> !RefUnwindSafe for Once<T>
impl<T> Unpin for Once<T> where
T: Unpin,
impl<T> UnwindSafe for Once<T> where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more