aboutsummaryrefslogtreecommitdiff
path: root/src/vector.rs
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2023-07-07 00:26:54 +0200
committerNathan Reiner <nathan@nathanreiner.xyz>2023-07-07 00:26:54 +0200
commit179920fa402b81a3ae8cc3c4b415172f71eb8d11 (patch)
tree33bd4cb4cceb58ef65ae19a6c8d0f3e4e0ea53ec /src/vector.rs
parent9b4aa4e9643b0a5b4a554e455eac269a2472b590 (diff)
add gui
Diffstat (limited to 'src/vector.rs')
-rw-r--r--src/vector.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vector.rs b/src/vector.rs
index 0779e07..87be04b 100644
--- a/src/vector.rs
+++ b/src/vector.rs
@@ -5,6 +5,7 @@ use std::ops::{Deref, DerefMut};
/// It is stored as a HashMap, because we do not
/// have to store the zeros. With that we save a lot
/// of storage.
+#[derive(Clone, Debug)]
pub struct FileVector {
data : HashMap<u64, u64>
}