summaryrefslogtreecommitdiffstats
path: root/src/core/src/components/search_bar/options.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/src/components/search_bar/options.rs')
-rw-r--r--src/core/src/components/search_bar/options.rs15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/core/src/components/search_bar/options.rs b/src/core/src/components/search_bar/options.rs
deleted file mode 100644
index 348d81c..0000000
--- a/src/core/src/components/search_bar/options.rs
+++ /dev/null
@@ -1,15 +0,0 @@
-use input::Event;
-
-pub struct Options {
- pub(crate) next_result_event: Vec<Event>,
- pub(crate) previous_result_event: Vec<Event>,
-}
-
-impl Options {
- pub fn new(next_result_event: Vec<Event>, previous_result_event: Vec<Event>) -> Self {
- Self {
- next_result_event,
- previous_result_event,
- }
- }
-}