pub trait LazyComputation<T>: Send + Sync { // Required method fn compute(&self) -> Pin<Box<dyn Future<Output = Result<T>> + Send + '_>>; }
Trait for lazy computations