pub trait Encrypt {
    // Required method
    fn encrypt(
        &mut self,
        master_key: &KeyingMaterial,
        batch: *mut WalletBatch
    ) -> bool;
}

Required Methods§

source

fn encrypt( &mut self, master_key: &KeyingMaterial, batch: *mut WalletBatch ) -> bool

Implementors§