pub trait BlindIndexSearchInitialize {
    // Required method
    fn create_blind_index<'life0, 'life1, 'async_trait>(
        &'life0 self,
        group_id: &'life1 GroupId
    ) -> Pin<Box<dyn Future<Output = Result<EncryptedBlindIndexSalt>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
}
Expand description

Trait which gives the ability to create a blind index.

Required Methods§

source

fn create_blind_index<'life0, 'life1, 'async_trait>( &'life0 self, group_id: &'life1 GroupId ) -> Pin<Box<dyn Future<Output = Result<EncryptedBlindIndexSalt>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Create an index and encrypt it to the provided group_id.

Implementors§