pub trait CoreRuntimeAdapter: Send + Sync {
// Required methods
fn name(&self) -> &str;
fn execute_core<'life0, 'async_trait>(
&'life0 self,
request: RuntimeCoreRequest,
) -> Pin<Box<dyn Future<Output = Result<RuntimeCoreOutcome, RuntimePlaneError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}