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

Signer recorder trait

Required Methods§

source

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

Record a signer registration

Implementors§