refactor(parse): Explicit Default

This commit is contained in:
Ed Page 2019-08-07 07:24:22 -05:00
parent 750005e971
commit 6ae42b4c1e

View file

@ -6,7 +6,7 @@ pub enum Case {
None, None,
} }
#[derive(Debug, Clone, Default, PartialEq, Eq, Hash)] #[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct ParserBuilder { pub struct ParserBuilder {
ignore_hex: bool, ignore_hex: bool,
} }
@ -33,6 +33,12 @@ impl ParserBuilder {
} }
} }
impl Default for ParserBuilder {
fn default() -> Self {
Self { ignore_hex: false }
}
}
#[derive(Debug, Clone)] #[derive(Debug, Clone)]
pub struct Parser { pub struct Parser {
words_str: regex::Regex, words_str: regex::Regex,