[][src]Struct conquer_once::raw::OnceCell

pub struct OnceCell<T, B> { /* fields omitted */ }

An interior mutability cell type which allows synchronized one-time initialization and read-only access exclusively after initialization.

Poisoning

A thread that panics in the course of executing its init function or closure poisons the cell. All subsequent accesses to a poisoned cell will propagate this and panic themselves.

Methods

impl<T, B> OnceCell<T, B>[src]

pub const fn uninit() -> Self[src]

Creates a new uninitialized OnceCell.

pub const fn new(value: T) -> Self[src]

Creates a new OnceCell pre-initialized with value.

pub fn into_inner(self) -> Option<T>[src]

Consumes self and returns a Some(T) if the OnceCell has previously been successfully initialized or None otherwise.

Panics

This method panics if the OnceCell has been poisoned.

Examples


let uninit: OnceCell<i32> = OnceCell::uninit();
assert!(uninit.into_inner().is_none());

let once = OnceCell::uninit();
once.init_once(|| "initialized");
assert_eq!(once.into_inner(), Some("initialized"));

pub fn is_initialized(&self) -> bool[src]

Returns true if the OnceCell has been successfully initialized.

This method does not panic if the OnceCell is poisoned and never blocks.

pub fn is_poisoned(&self) -> bool[src]

Returns true if the OnceCell has been poisoned during initialization.

This method does not panic if the OnceCell is poisoned and never blocks. Once this method has returned true all other means of accessing the OnceCell except for further calls to is_initialized or is_poisoned will lead to a panic

pub unsafe fn get_unchecked(&self) -> &T[src]

Returns a reference to the inner value without checking whether the OnceCell is actually initialized.

Safety

The caller has to ensure that the cell has been successfully initialized, otherwise uninitialized memory will be read.

Examples

This is one safe way to use this method, although try_get is the better alternative:

use conquer_once::OnceCell;

// let cell = ...

let res = if cell.is_initialized() {
    Some(unsafe { cell.get_unchecked() })
} else {
    None
};

impl<T, B: Block> OnceCell<T, B>[src]

pub fn try_get(&self) -> Result<&T, TryGetError>[src]

Returns a reference to the OnceCell's initialized inner state or an Err.

This method never blocks.

Errors

This method fails if the OnceCell is either not initialized (Uninit) or is currently being initialized by some other thread (WouldBlock).

Panics

This method panics if the OnceCell has been poisoned.

pub fn get(&self) -> Option<&T>[src]

Returns a reference to the OnceCell's initialized inner state or None.

This method blocks if another thread has already begun initializing the OnceCell concurrently. See try_get for a non-blocking alternative.

Panics

This method panics if the OnceCell has been poisoned.

Examples

use conquer_once::OnceCell;

let cell = OnceCell::uninit();
assert_eq!(cell.get(), None);
cell.init_once(|| {
    1
});
assert_eq!(cell.get(), Some(&1));

pub fn try_init_once(
    &self,
    func: impl FnOnce() -> T
) -> Result<(), TryInitError>
[src]

Attempts to initialize the OnceCell with func if is is uninitialized and returns Ok(()) only if func is successfully executed.

This method never blocks.

Errors

This method fails if the initialization of OnceCell has already been completed previously, in which case an AlreadyInit error is returned. If another thread is concurrently in the process of initializing it and this thread would have to block, a WouldBlock error is returned.

Panics

This method panics if the OnceCell has been poisoned.

Examples

use conquer_once::{OnceCell, TryInitError};

let cell = OnceCell::uninit();

// .. in thread 1
let res = cell.try_init_once(|| {
    1
});
assert!(res.is_ok());

// .. in thread 2
let res = cell.try_init_once(|| {
    2
});
assert_eq!(res, Err(TryInitError::AlreadyInit));

pub fn init_once(&self, func: impl FnOnce() -> T)[src]

Attempts to initialize the OnceCell with func if it is uninitialized.

This method blocks if another thread has already begun initializing the OnceCell concurrently.

If the initialization of the OnceCell has already been completed previously, this method returns early with minimal overhead (approximately 0.5ns in some benchmarks).

Panics

This method panics if the OnceCell has been poisoned.

Examples

use conquer_once::OnceCell;

let cell = OnceCell::uninit();
cell.init_once(|| {
    // expensive calculation
    (0..1_000).map(|i| i * i).sum::<usize>()
});

cell.init_once(|| {
    // any further or concurrent calls to `init_once` will do
    // nothing and return immediately with almost no overhead.
});

pub fn try_get_or_init(
    &self,
    func: impl FnOnce() -> T
) -> Result<&T, WouldBlockError>
[src]

Returns a reference to the OnceCell's initialized inner state or otherwise attempts to initialize it with func and return the result.

This method never blocks.

Errors

This method only fails if the calling thread would have to block in case another thread is concurrently initializing the OnceCell.

Panics

This method panics if the OnceCell has been poisoned.

pub fn get_or_init(&self, func: impl FnOnce() -> T) -> &T[src]

Returns a reference to the OnceCell's initialized inner state or otherwise attempts to initialize it with func and return the result.

This method blocks if another thread has already begun initializing the OnceCell concurrently. See try_get_or_init for a non-blocking alternative.

Panics

This method panics if the OnceCell has been poisoned.

Trait Implementations

impl<T: Debug, B: Block> Debug for OnceCell<T, B>[src]

impl<T, B> Drop for OnceCell<T, B>[src]

impl<T, B> Send for OnceCell<T, B> where
    T: Send
[src]

impl<T, B> Sync for OnceCell<T, B> where
    T: Sync
[src]

Auto Trait Implementations

impl<T, B> !RefUnwindSafe for OnceCell<T, B>

impl<T, B> Unpin for OnceCell<T, B> where
    B: Unpin,
    T: Unpin

impl<T, B> UnwindSafe for OnceCell<T, B> where
    B: UnwindSafe,
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.