@@ -126,15 +126,15 @@ pub trait QueryBuilderOps<'a> {
126126 /// column name and the value for the filter
127127 /// * `op` - Any element that implements [`Operator`] for create the comparison
128128 /// or equality binary operator
129- fn r#where < Z : FieldValueIdentifier < ' a > > ( self , column : & ' a Z , op : impl Operator ) -> Self ;
129+ fn r#where < Z : FieldValueIdentifier > ( self , column : & ' a Z , op : impl Operator ) -> Self ;
130130
131131 /// Generates an `AND` SQL clause for constraint the query.
132132 ///
133133 /// * `column` - A [`FieldValueIdentifier`] that will provide the target
134134 /// column name and the value for the filter
135135 /// * `op` - Any element that implements [`Operator`] for create the comparison
136136 /// or equality binary operator
137- fn and < Z : FieldValueIdentifier < ' a > > ( self , column : & ' a Z , op : impl Operator ) -> Self ;
137+ fn and < Z : FieldValueIdentifier > ( self , column : & ' a Z , op : impl Operator ) -> Self ;
138138
139139 /// Generates an `AND` SQL clause for constraint the query that's being constructed
140140 ///
@@ -167,7 +167,7 @@ pub trait QueryBuilderOps<'a> {
167167 /// column name and the value for the filter
168168 /// * `op` - Any element that implements [`Operator`] for create the comparison
169169 /// or equality binary operator
170- fn or < Z : FieldValueIdentifier < ' a > > ( self , column : & ' a Z , op : impl Operator ) -> Self ;
170+ fn or < Z : FieldValueIdentifier > ( self , column : & ' a Z , op : impl Operator ) -> Self ;
171171
172172 /// Generates a `ORDER BY` SQL clause for constraint the query.
173173 ///
0 commit comments