Who knew? When you need hash, eq etc., bot only fo...
# random
e
Who knew? When you need hash, eq etc., bot only for tests and you care about code size:
Copy code
#[cfg_attr(test, derive(Eq, PartialEq))]
#[derive(Debug)]
pub struct Parsed<'a> {
    pub items: Vec<Item<'a>>,
}
2
🙌 1