Struct iop_keyvault::Bip44[][src]

pub struct Bip44;

Entry point to generate a hierarchical deterministic wallet using the BIP-0044 standard. It is a more structured way to use the same seed for multiple coins, each with multiple accounts, each accounts with a new key for each transaction request. The standard is built on BIP-0043 using the purpose code 44. And BIP-0043 itself uses BIP-0032 to derive all nodes from a single master extended private key.

Implementations

impl Bip44[src]

pub fn network<C: KeyDerivationCrypto>(
    &self,
    seed: &Seed,
    network: &'static dyn Network<Suite = C>
) -> Result<Bip44Coin<C>>
[src]

Creates the entry point to a given coin based on the subtree defined by SLIP-0044 for it.

Trait Implementations

impl Clone for Bip44[src]

impl Debug for Bip44[src]

Auto Trait Implementations

impl RefUnwindSafe for Bip44

impl Send for Bip44

impl Sync for Bip44

impl Unpin for Bip44

impl UnwindSafe for Bip44

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<V, T> VZip<V> for T where
    V: MultiLane<T>,