pub struct Seed { /* fields omitted */ }
The secret value used to derive HD wallet addresses from a Mnemonic
phrase.
Because it is not possible to create a Mnemonic
instance that is invalid, it is
therefore impossible to have a Seed
instance that is invalid. This guarantees that only
a valid, intact mnemonic phrase can be used to derive HD wallet addresses.
To get the raw byte value use Seed::as_bytes()
. These can be used to derive
HD wallet addresses using another crate (deriving HD wallet addresses is outside the scope of this
crate and the BIP39 standard).
Seed
implements Zeroize
, so it’s bytes will be zeroed when it’s dropped.
pub fn new(mnemonic: &Mnemonic, password: &str) -> Self
[src]
Generates the seed from the Mnemonic
and the password.
Get the seed value as a byte slice
Formats the value using the given formatter. Read more
Executes the destructor for this type. Read more
Formats the value using the given formatter.
Formats the value using the given formatter.
Zero out this object from memory using Rust intrinsics which ensure the
zeroization operation is not “optimized away” by the compiler. Read more
impl<T> Any for T where
T: 'static + ?Sized,
[src]
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
impl<T, U> Into<U> for T where
U: From<T>,
[src]
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
The type returned in the event of a conversion error.
The type returned in the event of a conversion error.