refactor(parser): Add more traits to builder

This commit is contained in:
Ed Page 2019-07-24 06:49:51 -06:00
parent 039664339d
commit 36fefc166e

View file

@ -6,7 +6,7 @@ pub enum Case {
None, None,
} }
#[derive(Debug, Clone, Default)] #[derive(Debug, Clone, Default, PartialEq, Eq, Hash)]
pub struct ParserBuilder { pub struct ParserBuilder {
ignore_hex: bool, ignore_hex: bool,
} }