@@ -128,7 +128,7 @@ where
128128 Tr :: Diff : ' static ,
129129 G :: Timestamp : Clone +' static ,
130130 TInner : Refines < G :: Timestamp > +Lattice +Timestamp +Clone +' static ,
131- F : for < ' b > FnMut ( Tr :: Key < ' b > , Tr :: Val < ' b > , & G :: Timestamp ) ->TInner +Clone +' static ,
131+ F : FnMut ( Tr :: Key < ' _ > , Tr :: Val < ' _ > , & G :: Timestamp ) ->TInner +Clone +' static ,
132132 P : FnMut ( & TInner ) ->Tr :: Time +Clone +' static ,
133133 {
134134 let logic1 = logic. clone ( ) ;
@@ -175,7 +175,7 @@ where
175175 where
176176 Tr :: Diff : ' static ,
177177 G :: Timestamp : Clone +' static ,
178- F : for < ' a > FnMut ( Tr :: Key < ' a > , Tr :: Val < ' a > ) ->bool +Clone +' static ,
178+ F : FnMut ( Tr :: Key < ' _ > , Tr :: Val < ' _ > ) ->bool +Clone +' static ,
179179 {
180180 let logic1 = logic. clone ( ) ;
181181 let logic2 = logic. clone ( ) ;
@@ -192,7 +192,7 @@ where
192192 pub fn as_collection < D : Data , L > ( & self , mut logic : L ) -> Collection < G , D , Tr :: Diff >
193193 where
194194 Tr :: Diff : Semigroup ,
195- L : for < ' a > FnMut ( Tr :: Key < ' a > , Tr :: Val < ' a > ) -> D +' static ,
195+ L : FnMut ( Tr :: Key < ' _ > , Tr :: Val < ' _ > ) -> D +' static ,
196196 {
197197 self . flat_map_ref ( move |key, val| Some ( logic ( key, val) ) )
198198 }
@@ -206,7 +206,7 @@ where
206206 Tr :: Diff : Semigroup ,
207207 I : IntoIterator ,
208208 I :: Item : Data ,
209- L : for < ' a > FnMut ( Tr :: Key < ' a > , Tr :: Val < ' a > ) -> I +' static ,
209+ L : FnMut ( Tr :: Key < ' _ > , Tr :: Val < ' _ > ) -> I +' static ,
210210 {
211211 Self :: flat_map_batches ( & self . stream , logic)
212212 }
@@ -223,7 +223,7 @@ where
223223 Tr :: Diff : Semigroup ,
224224 I : IntoIterator ,
225225 I :: Item : Data ,
226- L : for < ' a > FnMut ( Tr :: Key < ' a > , Tr :: Val < ' a > ) -> I +' static ,
226+ L : FnMut ( Tr :: Key < ' _ > , Tr :: Val < ' _ > ) -> I +' static ,
227227 {
228228 stream. unary ( Pipeline , "AsCollection" , move |_, _| move |input, output| {
229229 input. for_each ( |time, data| {
0 commit comments