pub struct Seed { /* private fields */ }
Expand description
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.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Seed
impl Send for Seed
impl Sync for Seed
impl Unpin for Seed
impl UnwindSafe for Seed
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more