File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ pub enum Property<'p> {
119
119
ValueText ( & ' p str ) ,
120
120
}
121
121
122
- impl < ' p > Property < ' p > {
122
+ impl Property < ' _ > {
123
123
fn to_property_value ( & self ) -> ( AccessibleProperty , Value ) {
124
124
use Property :: * ;
125
125
@@ -173,7 +173,7 @@ pub enum Relation<'r> {
173
173
SetSize ( i32 ) ,
174
174
}
175
175
176
- impl < ' r > Relation < ' r > {
176
+ impl Relation < ' _ > {
177
177
fn to_relation_value ( & self ) -> ( AccessibleRelation , Value ) {
178
178
use Relation :: * ;
179
179
Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ impl<'a> BitsetIter<'a> {
108
108
}
109
109
}
110
110
111
- impl < ' a > Iterator for BitsetIter < ' a > {
111
+ impl Iterator for BitsetIter < ' _ > {
112
112
type Item = u32 ;
113
113
114
114
#[ doc( alias = "gtk_bitset_iter_next" ) ]
@@ -129,14 +129,14 @@ impl<'a> Iterator for BitsetIter<'a> {
129
129
}
130
130
}
131
131
132
- impl < ' a > std:: iter:: FusedIterator for BitsetIter < ' a > { }
132
+ impl std:: iter:: FusedIterator for BitsetIter < ' _ > { }
133
133
134
134
#[ doc( hidden) ]
135
135
impl < ' a > ToGlibPtr < ' a , * const ffi:: GtkBitsetIter > for BitsetIter < ' a > {
136
136
type Storage = & ' a Self ;
137
137
138
138
#[ inline]
139
- fn to_glib_none ( & ' a self ) -> Stash < * const ffi:: GtkBitsetIter , Self > {
139
+ fn to_glib_none ( & ' a self ) -> Stash < ' a , * const ffi:: GtkBitsetIter , Self > {
140
140
Stash ( & self . 0 as * const ffi:: GtkBitsetIter , self )
141
141
}
142
142
}
Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ impl ValueType for ResponseType {
118
118
type Type = Self ;
119
119
}
120
120
121
- unsafe impl < ' a > FromValue < ' a > for ResponseType {
121
+ unsafe impl FromValue < ' _ > for ResponseType {
122
122
type Checker = glib:: value:: GenericValueTypeChecker < Self > ;
123
123
124
124
#[ inline]
You can’t perform that action at this time.
0 commit comments