Skip to main content

DepositManagerResolver

Trait DepositManagerResolver 

Source
pub trait DepositManagerResolver:
    Send
    + Sync
    + 'static {
    // Required method
    fn manager_for_account<'life0, 'async_trait>(
        &'life0 self,
        account: WalletAddress,
    ) -> Pin<Box<dyn Future<Output = Result<WalletAddress>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

Source

fn manager_for_account<'life0, 'async_trait>( &'life0 self, account: WalletAddress, ) -> Pin<Box<dyn Future<Output = Result<WalletAddress>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§