Enum ethkey::Derivation[][src]

pub enum Derivation<T: Label> {
    Soft(T),
    Hard(T),
}

Key derivation over generic label T

Variants

Soft key derivation (allow proof of parent)

Hard key derivation (does not allow proof of parent)

Trait Implementations

impl From<u32> for Derivation<u32>
[src]

Performs the conversion.

Auto Trait Implementations

impl<T> Send for Derivation<T> where
    T: Send

impl<T> Sync for Derivation<T> where
    T: Sync