File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ impl Pool {
117
117
}
118
118
119
119
/// This impl allows us to use our own pool as an executor for SQLx queries.
120
- impl < ' p > sqlx:: Executor < ' p > for & ' _ Pool
120
+ impl sqlx:: Executor < ' _ > for & ' _ Pool
121
121
where
122
122
for < ' c > & ' c mut <sqlx:: Postgres as sqlx:: Database >:: Connection :
123
123
sqlx:: Executor < ' c , Database = sqlx:: Postgres > ,
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ impl BuildStatus {
32
32
}
33
33
}
34
34
35
- impl < ' a > PartialEq < & ' a str > for BuildStatus {
35
+ impl PartialEq < & str > for BuildStatus {
36
36
fn eq ( & self , other : & & str ) -> bool {
37
37
match self {
38
38
Self :: Success => * other == "success" ,
Original file line number Diff line number Diff line change @@ -290,7 +290,7 @@ pub(crate) enum ReleaseType {
290
290
Search ,
291
291
}
292
292
293
- impl < ' a > PartialEq < & ' a str > for ReleaseType {
293
+ impl PartialEq < & str > for ReleaseType {
294
294
fn eq ( & self , other : & & str ) -> bool {
295
295
self . as_str ( ) == * other
296
296
}
You can’t perform that action at this time.
0 commit comments