Debug trait on Dictionary

This commit is contained in:
Blallo 2020-05-19 10:48:17 +02:00
parent 24855e1209
commit 1b96ac1177
No known key found for this signature in database
GPG key ID: 0CBE577C9B72DC3F

View file

@ -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,
}