pub trait CoreCryptoCommand: Send + Sync {
    // Required method
    fn execute<'life0, 'async_trait>(
        &'life0 self,
        context: Arc<CoreCryptoContext>,
    ) -> Pin<Box<dyn Future<Output = CoreCryptoResult<()>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}Required Methods§
Sourcefn execute<'life0, 'async_trait>(
    &'life0 self,
    context: Arc<CoreCryptoContext>,
) -> Pin<Box<dyn Future<Output = CoreCryptoResult<()>> + Send + 'async_trait>>where
    Self: 'async_trait,
    'life0: 'async_trait,
 
fn execute<'life0, 'async_trait>(
    &'life0 self,
    context: Arc<CoreCryptoContext>,
) -> Pin<Box<dyn Future<Output = CoreCryptoResult<()>> + Send + 'async_trait>>where
    Self: 'async_trait,
    'life0: 'async_trait,
Will be called inside a transaction in CoreCrypto