[][src]Struct emerald_rs::mnemonic::Mnemonic

pub struct Mnemonic { /* fields omitted */ }

Mnemonic phrase

Implementations

impl Mnemonic[src]

pub fn new(lang: Language, size: MnemonicSize) -> Result<Mnemonic, Error>[src]

pub fn from_entropy(lang: Language, entropy: &[u8]) -> Result<Mnemonic, Error>[src]

Create new mnemonic phrase for selected language with provided entropy

Arguments:

  • lang - language for words selection

pub fn sentence(&self) -> String[src]

Convert mnemonic to single string

pub fn seed(&self, password: Option<&str>) -> Vec<u8>[src]

Get seed from mnemonic sentence

Arguments:

  • password - password for seed generation

pub fn try_from(lang: Language, src: &str) -> Result<Self, Error>[src]

Convert a string into Mnemonic.

Arguments

  • lang - A mnemonic language
  • src - A mnemonic sentence with MNEMONIC_SIZE length

Trait Implementations

impl Clone for Mnemonic[src]

impl Debug for Mnemonic[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err