File tree 1 file changed +25
-0
lines changed
1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -163,6 +163,31 @@ impl<Pk: MiniscriptKey> ForEachKey<Pk> for Policy<Pk> {
163
163
}
164
164
}
165
165
166
+ impl < ' a , Pk : MiniscriptKey > IntoIterator for & ' a Policy < Pk > {
167
+ type Item = & ' a Pk ;
168
+ type IntoIter = Box < dyn Iterator < Item = & ' a Pk > + ' a > ;
169
+
170
+ fn into_iter ( self ) -> Self :: IntoIter {
171
+ use std:: iter;
172
+
173
+ match * self {
174
+ Policy :: Key ( ref pk) => Box :: new ( iter:: once ( pk) ) ,
175
+ Policy :: Threshold ( _, ref subs) | Policy :: And ( ref subs) => {
176
+ Box :: new ( subs. iter ( ) . map ( |s| s. into_iter ( ) ) . flatten ( ) )
177
+ }
178
+ Policy :: Or ( ref subs) => Box :: new ( subs. iter ( ) . map ( |( _, s) | s. into_iter ( ) ) . flatten ( ) ) ,
179
+ Policy :: Unsatisfiable
180
+ | Policy :: Trivial
181
+ | Policy :: Sha256 ( ..)
182
+ | Policy :: Hash256 ( ..)
183
+ | Policy :: Ripemd160 ( ..)
184
+ | Policy :: Hash160 ( ..)
185
+ | Policy :: After ( ..)
186
+ | Policy :: Older ( ..) => Box :: new ( iter:: empty ( ) ) ,
187
+ }
188
+ }
189
+ }
190
+
166
191
impl < Pk : MiniscriptKey > Policy < Pk > {
167
192
/// Convert a policy using one kind of public key to another
168
193
/// type of public key
You can’t perform that action at this time.
0 commit comments