Trait breez_sdk_core::bitcoin::util::bip32::IntoDerivationPath

pub trait IntoDerivationPath {
    // Required method
    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§

fn into_derivation_path(self) -> Result<DerivationPath, Error>

Convers a given type into a DerivationPath with possible error

Implementations on Foreign Types§

§

impl IntoDerivationPath for String

§

impl<'a> IntoDerivationPath for &'a str

Implementors§

§

impl<T> IntoDerivationPath for T
where T: Into<DerivationPath>,