pub trait WalletExtension {
    // Required methods
    fn save_qr_code<P: AsRef<Path>>(&self, path: P, password: &[u8]);
    fn save_qr_code_hash<P: AsRef<Path>>(&self, path: P, password: &[u8]);
}

Required Methods§

source

fn save_qr_code<P: AsRef<Path>>(&self, path: P, password: &[u8])

source

fn save_qr_code_hash<P: AsRef<Path>>(&self, path: P, password: &[u8])

Implementations on Foreign Types§

source§

impl WalletExtension for Wallet

source§

fn save_qr_code<P: AsRef<Path>>(&self, path: P, password: &[u8])

source§

fn save_qr_code_hash<P: AsRef<Path>>(&self, path: P, password: &[u8])

Implementors§