pub trait SignersImporterRetriever: Sync + Send {
    // Required method
    fn retrieve<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = StdResult<HashMap<PartyId, Option<String>>>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}
Expand description

Trait that define how a SignersImporter retrieve the signers to import.

Required Methods§

source

fn retrieve<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = StdResult<HashMap<PartyId, Option<String>>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Retrieve the signers list.

Implementors§