@@ -2071,7 +2071,7 @@ impl ::Decoder<DecoderError> for Decoder {
2071
2071
expect ! ( self . pop( ) , String )
2072
2072
}
2073
2073
2074
- fn read_enum < T , F > ( & mut self , name : & str , f : F ) -> DecodeResult < T > where
2074
+ fn read_enum < T , F > ( & mut self , _name : & str , f : F ) -> DecodeResult < T > where
2075
2075
F : FnOnce ( & mut Decoder ) -> DecodeResult < T > ,
2076
2076
{
2077
2077
f ( self )
@@ -2120,7 +2120,7 @@ impl ::Decoder<DecoderError> for Decoder {
2120
2120
f ( self , idx)
2121
2121
}
2122
2122
2123
- fn read_enum_variant_arg < T , F > ( & mut self , idx : uint , f : F ) -> DecodeResult < T > where
2123
+ fn read_enum_variant_arg < T , F > ( & mut self , _idx : uint , f : F ) -> DecodeResult < T > where
2124
2124
F : FnOnce ( & mut Decoder ) -> DecodeResult < T > ,
2125
2125
{
2126
2126
f ( self )
@@ -2134,7 +2134,7 @@ impl ::Decoder<DecoderError> for Decoder {
2134
2134
2135
2135
2136
2136
fn read_enum_struct_variant_field < T , F > ( & mut self ,
2137
- name : & str ,
2137
+ _name : & str ,
2138
2138
idx : uint ,
2139
2139
f : F )
2140
2140
-> DecodeResult < T > where
@@ -2143,7 +2143,7 @@ impl ::Decoder<DecoderError> for Decoder {
2143
2143
self . read_enum_variant_arg ( idx, f)
2144
2144
}
2145
2145
2146
- fn read_struct < T , F > ( & mut self , name : & str , len : uint , f : F ) -> DecodeResult < T > where
2146
+ fn read_struct < T , F > ( & mut self , _name : & str , _len : uint , f : F ) -> DecodeResult < T > where
2147
2147
F : FnOnce ( & mut Decoder ) -> DecodeResult < T > ,
2148
2148
{
2149
2149
let value = try!( f ( self ) ) ;
@@ -2153,7 +2153,7 @@ impl ::Decoder<DecoderError> for Decoder {
2153
2153
2154
2154
fn read_struct_field < T , F > ( & mut self ,
2155
2155
name : & str ,
2156
- idx : uint ,
2156
+ _idx : uint ,
2157
2157
f : F )
2158
2158
-> DecodeResult < T > where
2159
2159
F : FnOnce ( & mut Decoder ) -> DecodeResult < T > ,
@@ -2198,7 +2198,7 @@ impl ::Decoder<DecoderError> for Decoder {
2198
2198
}
2199
2199
2200
2200
fn read_tuple_struct < T , F > ( & mut self ,
2201
- name : & str ,
2201
+ _name : & str ,
2202
2202
len : uint ,
2203
2203
f : F )
2204
2204
-> DecodeResult < T > where
@@ -2236,7 +2236,7 @@ impl ::Decoder<DecoderError> for Decoder {
2236
2236
f ( self , len)
2237
2237
}
2238
2238
2239
- fn read_seq_elt < T , F > ( & mut self , idx : uint , f : F ) -> DecodeResult < T > where
2239
+ fn read_seq_elt < T , F > ( & mut self , _idx : uint , f : F ) -> DecodeResult < T > where
2240
2240
F : FnOnce ( & mut Decoder ) -> DecodeResult < T > ,
2241
2241
{
2242
2242
f ( self )
@@ -2254,13 +2254,13 @@ impl ::Decoder<DecoderError> for Decoder {
2254
2254
f ( self , len)
2255
2255
}
2256
2256
2257
- fn read_map_elt_key < T , F > ( & mut self , idx : uint , f : F ) -> DecodeResult < T > where
2257
+ fn read_map_elt_key < T , F > ( & mut self , _idx : uint , f : F ) -> DecodeResult < T > where
2258
2258
F : FnOnce ( & mut Decoder ) -> DecodeResult < T > ,
2259
2259
{
2260
2260
f ( self )
2261
2261
}
2262
2262
2263
- fn read_map_elt_val < T , F > ( & mut self , idx : uint , f : F ) -> DecodeResult < T > where
2263
+ fn read_map_elt_val < T , F > ( & mut self , _idx : uint , f : F ) -> DecodeResult < T > where
2264
2264
F : FnOnce ( & mut Decoder ) -> DecodeResult < T > ,
2265
2265
{
2266
2266
f ( self )
0 commit comments