add missing Vec<u8> deserialization hint to Deserializer

This commit is contained in:
Oliver Schneider
2017-01-16 16:55:13 +01:00
parent bc6bc9e3f0
commit b26f291d93
7 changed files with 36 additions and 14 deletions
+1
View File
@@ -17,6 +17,7 @@ pub enum Token<'a> {
Str(&'a str),
String(String),
Bytes(&'a [u8]),
ByteBuf(Vec<u8>),
Option(bool),