summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManos Pitsidianakis <el13635@mail.ntua.gr>2022-09-19 22:04:10 +0300
committerManos Pitsidianakis <el13635@mail.ntua.gr>2022-09-19 22:04:10 +0300
commite450ad0f9cbc2d215a8f03d2d39260abe19fb5af (patch)
tree8061e1fbb150f112e5d5d66c7b75c13d834f389c
parent0ed10711ef542cc13eaaef809fa557468b3d6696 (diff)
downloadmeli-e450ad0f9cbc2d215a8f03d2d39260abe19fb5af.zip
types.rs: remove unused struct
-rw-r--r--src/types.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/types.rs b/src/types.rs
index 3cb2dfc4..e50a9797 100644
--- a/src/types.rs
+++ b/src/types.rs
@@ -195,14 +195,6 @@ impl fmt::Display for UIMode {
}
}
-/// An event notification that is passed to Entities for handling.
-pub struct Notification {
- _title: String,
- _content: String,
-
- _timestamp: std::time::Instant,
-}
-
pub mod segment_tree {
/*! Simple segment tree implementation for maximum in range queries. This is useful if given an
* array of numbers you want to get the maximum value inside an interval quickly.