File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ pub enum Property<'p> {
124124 ValueText ( & ' p str ) ,
125125}
126126
127- impl < ' p > Property < ' p > {
127+ impl Property < ' _ > {
128128 fn to_property_value ( & self ) -> ( AccessibleProperty , Value ) {
129129 use Property :: * ;
130130
@@ -178,7 +178,7 @@ pub enum Relation<'r> {
178178 SetSize ( i32 ) ,
179179}
180180
181- impl < ' r > Relation < ' r > {
181+ impl Relation < ' _ > {
182182 fn to_relation_value ( & self ) -> ( AccessibleRelation , Value ) {
183183 use Relation :: * ;
184184
Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ impl<'a> BitsetIter<'a> {
108108 }
109109}
110110
111- impl < ' a > Iterator for BitsetIter < ' a > {
111+ impl Iterator for BitsetIter < ' _ > {
112112 type Item = u32 ;
113113
114114 #[ doc( alias = "gtk_bitset_iter_next" ) ]
@@ -129,7 +129,7 @@ impl<'a> Iterator for BitsetIter<'a> {
129129 }
130130}
131131
132- impl < ' a > std:: iter:: FusedIterator for BitsetIter < ' a > { }
132+ impl std:: iter:: FusedIterator for BitsetIter < ' _ > { }
133133
134134#[ doc( hidden) ]
135135impl < ' a > ToGlibPtr < ' a , * const ffi:: GtkBitsetIter > for BitsetIter < ' a > {
Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ impl ValueType for ResponseType {
118118 type Type = Self ;
119119}
120120
121- unsafe impl < ' a > FromValue < ' a > for ResponseType {
121+ unsafe impl FromValue < ' _ > for ResponseType {
122122 type Checker = glib:: value:: GenericValueTypeChecker < Self > ;
123123
124124 #[ inline]
You can’t perform that action at this time.
0 commit comments