core_crypto_keystore::entities

Trait MlsCredentialExt

Source
pub trait MlsCredentialExt: Entity {
    // Required method
    fn delete_by_credential<'life0, 'life1, 'async_trait>(
        tx: &'life0 TransactionWrapper<'life1>,
        credential: Vec<u8>,
    ) -> Pin<Box<dyn Future<Output = CryptoKeystoreResult<()>> + Send + 'async_trait>>
       where 'life0: 'async_trait,
             'life1: 'async_trait;
}

Required Methods§

Source

fn delete_by_credential<'life0, 'life1, 'async_trait>( tx: &'life0 TransactionWrapper<'life1>, credential: Vec<u8>, ) -> Pin<Box<dyn Future<Output = CryptoKeystoreResult<()>> + Send + 'async_trait>>
where 'life0: 'async_trait, 'life1: 'async_trait,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§