pub trait IntoDerivationPath {
    fn into_derivation_path(self) -> Result<DerivationPath, Error>;
}
Expand description

Trait that allows possibly failable conversion from a type into a derivation path

Required Methods

Convers a given type into a DerivationPath with possible error

Implementations on Foreign Types

Implementors