Trait bitcoin::util::bip32::IntoDerivationPath [−][src]
pub trait IntoDerivationPath { fn into_derivation_path(self) -> Result<DerivationPath, Error>; }
Trait that allows possibly failable conversion from a type into a derivation path
Required methods
fn into_derivation_path(self) -> Result<DerivationPath, Error>
[src]
Convers a given type into a DerivationPath
with possible error
Implementations on Foreign Types
impl IntoDerivationPath for String
[src]
impl IntoDerivationPath for String
[src]fn into_derivation_path(self) -> Result<DerivationPath, Error>
[src]
impl<'a> IntoDerivationPath for &'a str
[src]
impl<'a> IntoDerivationPath for &'a str
[src]fn into_derivation_path(self) -> Result<DerivationPath, Error>
[src]
Implementors
impl<T> IntoDerivationPath for T where
T: Into<DerivationPath>,
[src]
impl<T> IntoDerivationPath for T where
T: Into<DerivationPath>,
[src]