Debug trait on Dictionary
This commit is contained in:
parent
24855e1209
commit
1b96ac1177
1 changed files with 2 additions and 2 deletions
|
@ -10,8 +10,8 @@ use unidecode::unidecode;
|
|||
|
||||
use std::collections::HashSet;
|
||||
|
||||
#[derive(Default)]
|
||||
struct Dictionary{
|
||||
#[derive(Default, Debug)]
|
||||
struct Dictionary {
|
||||
words: Vec<String>,
|
||||
iter_position: usize,
|
||||
}
|
||||
|
|
Reference in a new issue