mirror of
https://github.com/servo/servo.git
synced 2025-08-07 06:25:32 +01:00
Derive more Debug impls.
This commit is contained in:
parent
886459de6b
commit
6ed5b561df
2 changed files with 44 additions and 105 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue