pub trait FromMnemonic: Sized {
    type Err;

    // Required method
    fn from_mnemonic<S>(
        mnemonic: S,
        passphrase: Option<S>
    ) -> Result<Self, Self::Err>
       where S: Into<String>;
}

Required Associated Types§

Required Methods§

source

fn from_mnemonic<S>( mnemonic: S, passphrase: Option<S> ) -> Result<Self, Self::Err>where S: Into<String>,

Implementors§