@@ -55,34 +55,28 @@ where
55
55
// pub struct Uint<const BITS: usize, const LIMBS: usize> { .. }
56
56
// ```
57
57
58
- impl < ' a , const BITS : usize , const LIMBS : usize > AsExpression < Binary > for & ' a Uint < BITS , LIMBS > {
58
+ impl < const BITS : usize , const LIMBS : usize > AsExpression < Binary > for & Uint < BITS , LIMBS > {
59
59
type Expression = Bound < Binary , Self > ;
60
60
fn as_expression ( self ) -> Self :: Expression {
61
61
Bound :: new ( self )
62
62
}
63
63
}
64
64
65
- impl < ' a , const BITS : usize , const LIMBS : usize > AsExpression < Nullable < Binary > >
66
- for & ' a Uint < BITS , LIMBS >
67
- {
65
+ impl < const BITS : usize , const LIMBS : usize > AsExpression < Nullable < Binary > > for & Uint < BITS , LIMBS > {
68
66
type Expression = Bound < Nullable < Binary > , Self > ;
69
67
fn as_expression ( self ) -> Self :: Expression {
70
68
Bound :: new ( self )
71
69
}
72
70
}
73
71
74
- impl < ' a , ' b , const BITS : usize , const LIMBS : usize > AsExpression < Binary >
75
- for & ' b & ' a Uint < BITS , LIMBS >
76
- {
72
+ impl < const BITS : usize , const LIMBS : usize > AsExpression < Binary > for & & Uint < BITS , LIMBS > {
77
73
type Expression = Bound < Binary , Self > ;
78
74
fn as_expression ( self ) -> Self :: Expression {
79
75
Bound :: new ( self )
80
76
}
81
77
}
82
78
83
- impl < ' a , ' b , const BITS : usize , const LIMBS : usize > AsExpression < Nullable < Binary > >
84
- for & ' b & ' a Uint < BITS , LIMBS >
85
- {
79
+ impl < const BITS : usize , const LIMBS : usize > AsExpression < Nullable < Binary > > for & & Uint < BITS , LIMBS > {
86
80
type Expression = Bound < Nullable < Binary > , Self > ;
87
81
fn as_expression ( self ) -> Self :: Expression {
88
82
Bound :: new ( self )
0 commit comments