Module async_once_cell

Module async_once_cell 

Source
Expand description

Low level utilities shared across IOTA.

Structsยง

AsyncOnceCell
This structure contains a cell for a single value. The cell can be written only once, and can be read many times. Readers are provided with async API, that waits for write to happen. This is similar to tokio::sync::watch, except one difference: