Put deserialize_struct and deserialize_enum adjacent

This commit is contained in:
David Tolnay
2017-04-14 21:59:56 -07:00
parent cdfd445528
commit 54bbf81dfc
5 changed files with 26 additions and 26 deletions
+1 -1
View File
@@ -657,6 +657,6 @@ impl<'de> de::Deserializer<'de> for BytesDeserializer {
forward_to_deserialize_any! {
bool i8 i16 i32 i64 u8 u16 u32 u64 f32 f64 char str string bytes
byte_buf option unit unit_struct newtype_struct seq seq_fixed_size
tuple tuple_struct map struct identifier enum ignored_any
tuple tuple_struct map struct enum identifier ignored_any
}
}