Implement Debug for public types

This commit is contained in:
David Tolnay
2017-04-13 11:04:16 -07:00
parent 4f39766211
commit 07154303ed
4 changed files with 34 additions and 0 deletions
+1
View File
@@ -6,6 +6,7 @@ use error::Error;
use token::Token;
/// A `Deserializer` that reads from a list of tokens.
#[derive(Debug)]
pub struct Deserializer<'de> {
tokens: &'de [Token],
}