|
| 1 | +// SPDX-License-Identifier: CC0-1.0 |
| 2 | + |
| 3 | +//! Blanket Traits |
| 4 | +//! |
| 5 | +//! Because of this library's heavy use of generics, we often require complicated |
| 6 | +//! trait bounds (especially when it comes to [`FromStr`] and its |
| 7 | +//! associated error types). These blanket traits act as aliases, allowing easier |
| 8 | +//! descriptions of them. |
| 9 | +//! |
| 10 | +//! While these traits are not sealed, they have blanket-impls which prevent you |
| 11 | +//! from directly implementing them on your own types. The traits will be |
| 12 | +//! automatically implemented if you satisfy all the bounds. |
| 13 | +//! |
| 14 | +
|
| 15 | +use core::fmt; |
| 16 | +use core::str::FromStr; |
| 17 | + |
| 18 | +use crate::MiniscriptKey; |
| 19 | + |
| 20 | +/// Blanket trait describing a key where all associated types implement `FromStr`, |
| 21 | +/// and all `FromStr` errors can be displayed. |
| 22 | +pub trait FromStrKey: |
| 23 | + MiniscriptKey< |
| 24 | + Sha256 = Self::_Sha256, |
| 25 | + Hash256 = Self::_Hash256, |
| 26 | + Ripemd160 = Self::_Ripemd160, |
| 27 | + Hash160 = Self::_Hash160, |
| 28 | + > + FromStr<Err = Self::_FromStrErr> |
| 29 | +{ |
| 30 | + /// Dummy type. Do not use. |
| 31 | + type _Sha256: FromStr<Err = Self::_Sha256FromStrErr>; |
| 32 | + /// Dummy type. Do not use. |
| 33 | + type _Sha256FromStrErr: fmt::Debug + fmt::Display; |
| 34 | + /// Dummy type. Do not use. |
| 35 | + type _Hash256: FromStr<Err = Self::_Hash256FromStrErr>; |
| 36 | + /// Dummy type. Do not use. |
| 37 | + type _Hash256FromStrErr: fmt::Debug + fmt::Display; |
| 38 | + /// Dummy type. Do not use. |
| 39 | + type _Ripemd160: FromStr<Err = Self::_Ripemd160FromStrErr>; |
| 40 | + /// Dummy type. Do not use. |
| 41 | + type _Ripemd160FromStrErr: fmt::Debug + fmt::Display; |
| 42 | + /// Dummy type. Do not use. |
| 43 | + type _Hash160: FromStr<Err = Self::_Hash160FromStrErr>; |
| 44 | + /// Dummy type. Do not use. |
| 45 | + type _Hash160FromStrErr: fmt::Debug + fmt::Display; |
| 46 | + /// Dummy type. Do not use. |
| 47 | + type _FromStrErr: fmt::Debug + fmt::Display; |
| 48 | +} |
| 49 | + |
| 50 | +impl<T> FromStrKey for T |
| 51 | +where |
| 52 | + Self: MiniscriptKey + FromStr, |
| 53 | + <Self as MiniscriptKey>::Sha256: FromStr, |
| 54 | + Self::Hash256: FromStr, |
| 55 | + Self::Ripemd160: FromStr, |
| 56 | + Self::Hash160: FromStr, |
| 57 | + <Self as FromStr>::Err: fmt::Debug + fmt::Display, |
| 58 | + <<Self as MiniscriptKey>::Sha256 as FromStr>::Err: fmt::Debug + fmt::Display, |
| 59 | + <Self::Hash256 as FromStr>::Err: fmt::Debug + fmt::Display, |
| 60 | + <Self::Ripemd160 as FromStr>::Err: fmt::Debug + fmt::Display, |
| 61 | + <Self::Hash160 as FromStr>::Err: fmt::Debug + fmt::Display, |
| 62 | +{ |
| 63 | + type _Sha256 = <T as MiniscriptKey>::Sha256; |
| 64 | + type _Sha256FromStrErr = <<T as MiniscriptKey>::Sha256 as FromStr>::Err; |
| 65 | + type _Hash256 = <T as MiniscriptKey>::Hash256; |
| 66 | + type _Hash256FromStrErr = <<T as MiniscriptKey>::Hash256 as FromStr>::Err; |
| 67 | + type _Ripemd160 = <T as MiniscriptKey>::Ripemd160; |
| 68 | + type _Ripemd160FromStrErr = <<T as MiniscriptKey>::Ripemd160 as FromStr>::Err; |
| 69 | + type _Hash160 = <T as MiniscriptKey>::Hash160; |
| 70 | + type _Hash160FromStrErr = <<T as MiniscriptKey>::Hash160 as FromStr>::Err; |
| 71 | + type _FromStrErr = <T as FromStr>::Err; |
| 72 | +} |
0 commit comments