Expand description
Future wrapper for non-blocking test execution.
This module provides RunFuture<O>, a future returned by run() that
resolves to a TestResult<O>. It can wrap either a tokio::task::JoinHandle
(for spawned tasks) or a boxed future (for inline async execution), enabling
concurrent interaction with OperationHandles while the handler is executing.
Structsยง
- RunFuture
- A future returned by
run()that resolves to aTestResult<O>.