pub trait Mnemonic {
// Required methods
fn phrase(&self) -> &str;
fn into_phrase(self) -> String;
fn to_private_key(&self, password: &str) -> Result<HDPrivKey>;
}pub trait Mnemonic {
// Required methods
fn phrase(&self) -> &str;
fn into_phrase(self) -> String;
fn to_private_key(&self, password: &str) -> Result<HDPrivKey>;
}