Derive more Debug impls.

This commit is contained in:
Simon Sapin 2015-11-03 21:52:25 +01:00
parent 886459de6b
commit 6ed5b561df
2 changed files with 44 additions and 105 deletions

View file

@ -24,7 +24,7 @@ pub fn parse_name(s: &str) -> Result<&str, ()> {
}
}
#[derive(Clone, PartialEq)]
#[derive(Clone, PartialEq, Debug)]
pub struct SpecifiedValue {
css: String,
@ -42,7 +42,7 @@ pub struct BorrowedSpecifiedValue<'a> {
references: Option<&'a HashSet<Name>>,
}
#[derive(Clone, HeapSizeOf)]
#[derive(Clone, HeapSizeOf, Debug)]
pub struct ComputedValue {
css: String,
first_token_type: TokenSerializationType,