Skip to main content

OnceCell

Type Alias OnceCell 

Source
pub type OnceCell = OnceCellEntity;

Aliased Type§

pub struct OnceCell {
    pub waiter_count: u32,
    pub state: OnceCellState,
}

Fields§

§waiter_count: u32

Number of tasks currently waiting for initialization.

§state: OnceCellState

Current once-cell lifecycle state.