diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-07-07 00:26:54 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-07-07 00:26:54 +0200 |
| commit | 179920fa402b81a3ae8cc3c4b415172f71eb8d11 (patch) | |
| tree | 33bd4cb4cceb58ef65ae19a6c8d0f3e4e0ea53ec /src/dictionary.rs | |
| parent | 9b4aa4e9643b0a5b4a554e455eac269a2472b590 (diff) | |
add gui
Diffstat (limited to 'src/dictionary.rs')
| -rw-r--r-- | src/dictionary.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/dictionary.rs b/src/dictionary.rs index 94f377d..e651e71 100644 --- a/src/dictionary.rs +++ b/src/dictionary.rs @@ -5,6 +5,7 @@ use crate::vector::FileVector; /// It also provides a function to convert it to /// a vector and generate a FileVector from a word list /// with the current directory. +#[derive(Clone, Debug)] pub struct Dictionary { last_index : usize, data : HashMap<String, u64>, |