Type Definition conquer_once::noblock::OnceCell
source · [−]pub type OnceCell<T> = OnceCell<T, NoBlock>;
Expand description
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.