[][src]Type Definition conquer_once::noblock::OnceCell

type OnceCell<T> = OnceCell<T, NoBlock>;

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

This type does not permit any (potentially) blocking operations, only their respective non-blocking counterparts and is thus #[no_std] compatible.

For the API of this type alias, see the generic OnceCell type.