Skip to content

Commit d2510bc

Browse files
committed
Take advantage of shorter generic Key
Now we have `Key` instead of `MiniscriptKey` we can take advantage of the shorter name to inline the where clauses when appropriate.
1 parent 43e2424 commit d2510bc

File tree

6 files changed

+8
-40
lines changed

6 files changed

+8
-40
lines changed

src/descriptor/bare.rs

+2-10
Original file line numberDiff line numberDiff line change
@@ -181,11 +181,7 @@ impl<Pk: Key> ForEachKey<Pk> for Bare<Pk> {
181181
}
182182
}
183183

184-
impl<P, Q> TranslatePk<P, Q> for Bare<P>
185-
where
186-
P: Key,
187-
Q: Key,
188-
{
184+
impl<P: Key, Q: Key> TranslatePk<P, Q> for Bare<P> {
189185
type Output = Bare<Q>;
190186

191187
fn translate_pk<T, E>(&self, t: &mut T) -> Result<Bare<Q>, TranslateErr<E>>
@@ -366,11 +362,7 @@ impl<Pk: Key> ForEachKey<Pk> for Pkh<Pk> {
366362
}
367363
}
368364

369-
impl<P, Q> TranslatePk<P, Q> for Pkh<P>
370-
where
371-
P: Key,
372-
Q: Key,
373-
{
365+
impl<P: Key, Q: Key> TranslatePk<P, Q> for Pkh<P> {
374366
type Output = Pkh<Q>;
375367

376368
fn translate_pk<T, E>(&self, t: &mut T) -> Result<Self::Output, TranslateErr<E>>

src/descriptor/mod.rs

+1-5
Original file line numberDiff line numberDiff line change
@@ -511,11 +511,7 @@ impl<Pk: Key + ToPublicKey> Descriptor<Pk> {
511511
}
512512
}
513513

514-
impl<P, Q> TranslatePk<P, Q> for Descriptor<P>
515-
where
516-
P: Key,
517-
Q: Key,
518-
{
514+
impl<P: Key, Q: Key> TranslatePk<P, Q> for Descriptor<P> {
519515
type Output = Descriptor<Q>;
520516

521517
/// Converts a descriptor using abstract keys to one using specific keys.

src/descriptor/segwitv0.rs

+2-10
Original file line numberDiff line numberDiff line change
@@ -275,11 +275,7 @@ impl<Pk: Key> ForEachKey<Pk> for Wsh<Pk> {
275275
}
276276
}
277277

278-
impl<P, Q> TranslatePk<P, Q> for Wsh<P>
279-
where
280-
P: Key,
281-
Q: Key,
282-
{
278+
impl<P: Key, Q: Key> TranslatePk<P, Q> for Wsh<P> {
283279
type Output = Wsh<Q>;
284280

285281
fn translate_pk<T, E>(&self, t: &mut T) -> Result<Self::Output, TranslateErr<E>>
@@ -473,11 +469,7 @@ impl<Pk: Key> ForEachKey<Pk> for Wpkh<Pk> {
473469
}
474470
}
475471

476-
impl<P, Q> TranslatePk<P, Q> for Wpkh<P>
477-
where
478-
P: Key,
479-
Q: Key,
480-
{
472+
impl<P: Key, Q: Key> TranslatePk<P, Q> for Wpkh<P> {
481473
type Output = Wpkh<Q>;
482474

483475
fn translate_pk<T, E>(&self, t: &mut T) -> Result<Self::Output, TranslateErr<E>>

src/descriptor/sh.rs

+1-5
Original file line numberDiff line numberDiff line change
@@ -430,11 +430,7 @@ impl<Pk: Key> ForEachKey<Pk> for Sh<Pk> {
430430
}
431431
}
432432

433-
impl<P, Q> TranslatePk<P, Q> for Sh<P>
434-
where
435-
P: Key,
436-
Q: Key,
437-
{
433+
impl<P: Key, Q: Key> TranslatePk<P, Q> for Sh<P> {
438434
type Output = Sh<Q>;
439435

440436
fn translate_pk<T, E>(&self, t: &mut T) -> Result<Self::Output, TranslateErr<E>>

src/descriptor/tr.rs

+1-5
Original file line numberDiff line numberDiff line change
@@ -623,11 +623,7 @@ impl<Pk: Key> ForEachKey<Pk> for Tr<Pk> {
623623
}
624624
}
625625

626-
impl<P, Q> TranslatePk<P, Q> for Tr<P>
627-
where
628-
P: Key,
629-
Q: Key,
630-
{
626+
impl<P: Key, Q: Key> TranslatePk<P, Q> for Tr<P> {
631627
type Output = Tr<Q>;
632628

633629
fn translate_pk<T, E>(&self, translate: &mut T) -> Result<Self::Output, TranslateErr<E>>

src/lib.rs

+1-5
Original file line numberDiff line numberDiff line change
@@ -426,11 +426,7 @@ impl<E: fmt::Debug> fmt::Debug for TranslateErr<E> {
426426

427427
/// Converts a descriptor using abstract keys to one using specific keys. Uses translator `t` to do
428428
/// the actual translation function calls.
429-
pub trait TranslatePk<P, Q>
430-
where
431-
P: Key,
432-
Q: Key,
433-
{
429+
pub trait TranslatePk<P: Key, Q: Key> {
434430
/// The associated output type. This must be `Self<Q>`.
435431
type Output;
436432

0 commit comments

Comments
 (0)