Type Definition test_runners_lib::elf::MemoizedFutureContainer
source · pub type MemoizedFutureContainer<T, E> = Arc<Mutex<Option<Shared<PinnedFuture<T, E>>>>>;
Expand description
A mutable container around SharedFuture<T, E>
that can be filled in when the stored future is
first created.