pub trait GetWallets {
    // Required method
    fn get_wallets(&mut self) -> Vec<Box<dyn WalletInterface>>;
}

Required Methods§

source

fn get_wallets(&mut self) -> Vec<Box<dyn WalletInterface>>

| Return interfaces for accessing wallets | (if any). |

Implementors§