pub trait HarnessAdapter: Send + Sync {
// Required methods
fn name(&self) -> &str;
fn kind(&self) -> HarnessKind;
fn execute<'life0, 'async_trait>(
&'life0 self,
request: HarnessRequest,
) -> Pin<Box<dyn Future<Output = Result<HarnessOutcome, HarnessError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}