pub trait WalletRegistryFactory: Send + Sync {
    // Required method
    fn capacity_alert<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = CanisterResult<ActorResult<()>>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

source

fn capacity_alert<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = CanisterResult<ActorResult<()>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§