pub trait GenerateMnemonic { type Err; // Required method fn generate_mnemonic(word_count: usize) -> Result<Mnemonic, Self::Err>; }