pub trait SignerGetter: Sync + Send {
    // Required method
    fn get_all<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = StdResult<Vec<SignerRecord>>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}
Expand description

Service to get SignerRecord.

Required Methods§

source

fn get_all<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = StdResult<Vec<SignerRecord>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Return all stored records.

Implementors§