pub trait CryptoKeystoreProteus {
// Required method
fn proteus_store_prekey<'life0, 'life1, 'async_trait>(
&'life0 self,
id: u16,
prekey: &'life1 [u8],
) -> Pin<Box<dyn Future<Output = CryptoKeystoreResult<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
}