types.rs: remove unused struct

issue-133
Manos Pitsidianakis 2022-09-19 22:04:10 +03:00
parent 0ed10711ef
commit e450ad0f9c
1 changed files with 0 additions and 8 deletions

View File

@ -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 { pub mod segment_tree {
/*! Simple segment tree implementation for maximum in range queries. This is useful if given an /*! 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. * array of numbers you want to get the maximum value inside an interval quickly.