Skip to main content

OnceList

Type Alias OnceList 

Source
pub type OnceList<T, A = Global> = OnceListCore<T, A, NoCache>;
Expand description

A single linked list which behaves like std::cell::OnceCell, but for multiple values.

This is a type alias of the internal implementation type. The default caching mode is NoCache.

Aliased Typeยง

pub struct OnceList<T, A = Global> { /* private fields */ }