[][src]Trait miniscript::TranslatePk1

pub trait TranslatePk1<P: MiniscriptKey, Q: MiniscriptKey<Hash = P::Hash>>: TranslatePk<P, Q> {
    fn translate_pk1<Fpk, E>(
        &self,
        translatefpk: Fpk
    ) -> Result<Self::Output, E>
    where
        Fpk: FnMut(&P) -> Result<Q, E>
, { ... }
fn translate_pk1_infallible<Fpk: FnMut(&P) -> Q>(
        &self,
        translatefpk: Fpk
    ) -> Self::Output { ... } }

Variant of TranslatePk where P and Q both have the same hash type, and the hashes can be converted by just cloning them

Provided methods

fn translate_pk1<Fpk, E>(&self, translatefpk: Fpk) -> Result<Self::Output, E> where
    Fpk: FnMut(&P) -> Result<Q, E>, 
[src]

Translate a struct from one generic to another where the translation for Pk is provided by translatefpk

fn translate_pk1_infallible<Fpk: FnMut(&P) -> Q>(
    &self,
    translatefpk: Fpk
) -> Self::Output
[src]

Translate a struct from one generic to another where the translation for Pk is provided by translatefpk

Loading content...

Implementors

impl<P: MiniscriptKey, Q: MiniscriptKey<Hash = P::Hash>, T: TranslatePk<P, Q>> TranslatePk1<P, Q> for T[src]

Loading content...