pub trait ImportPrivKeys {
    // Required method
    fn import_priv_keys(
        &mut self,
        privkey_map: &HashMap<KeyID, Key>,
        timestamp: i64
    ) -> bool;
}

Required Methods§

source

fn import_priv_keys( &mut self, privkey_map: &HashMap<KeyID, Key>, timestamp: i64 ) -> bool

Implementors§