pub(crate) trait EmulatedE2eIdentityClient: EmulatedClient {
// Required method
fn e2ei_new_enrollment<'life0, 'async_trait>(
&'life0 mut self,
ciphersuite: MlsCiphersuite,
) -> Pin<Box<dyn Future<Output = Result<()>> + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}