@@ -353,7 +353,7 @@ impl<K, T> ResultContext<K, T> for Option<T> {
353353 }
354354}
355355
356- impl < K : UniKind , K2 : UniKind , T > ResultContext < K2 , T > for UniResult < T , K > {
356+ impl < K : UniKind , K2 , T > ResultContext < K2 , T > for UniResult < T , K > {
357357 fn kind ( self , kind : K2 ) -> UniResult < T , K2 > {
358358 self . map_err ( |err| err. kind ( kind) )
359359 }
@@ -402,7 +402,7 @@ impl<K: UniKind, K2: UniKind, T> ResultContext<K2, T> for UniResult<T, K> {
402402 }
403403}
404404
405- impl < K2 : UniKind , T > ResultContext < K2 , T > for UniResult < T , dyn UniKind > {
405+ impl < K2 , T > ResultContext < K2 , T > for UniResult < T , dyn UniKind > {
406406 fn kind ( self , kind : K2 ) -> UniResult < T , K2 > {
407407 self . map_err ( |err| err. kind ( kind) )
408408 }
@@ -450,7 +450,7 @@ impl<K2: UniKind, T> ResultContext<K2, T> for UniResult<T, dyn UniKind> {
450450 }
451451}
452452
453- impl < C : ' static , K2 : UniKind , T > ResultContext < K2 , T > for UniResult < T , dyn UniKindCode < Code = C > > {
453+ impl < C : ' static , K2 , T > ResultContext < K2 , T > for UniResult < T , dyn UniKindCode < Code = C > > {
454454 fn kind ( self , kind : K2 ) -> UniResult < T , K2 > {
455455 self . map_err ( |err| err. kind ( kind) )
456456 }
@@ -498,7 +498,7 @@ impl<C: 'static, K2: UniKind, T> ResultContext<K2, T> for UniResult<T, dyn UniKi
498498 }
499499}
500500
501- impl < C : ' static , C2 : ' static , K2 : UniKind , T > ResultContext < K2 , T >
501+ impl < C : ' static , C2 : ' static , K2 , T > ResultContext < K2 , T >
502502 for UniResult < T , dyn UniKindCodes < Code = C , Code2 = C2 > >
503503{
504504 fn kind ( self , kind : K2 ) -> UniResult < T , K2 > {
0 commit comments