aboutsummaryrefslogtreecommitdiff
path: root/src/filters
diff options
context:
space:
mode:
authorDaniel <kingdread@gmx.de>2020-05-13 12:52:13 +0200
committerDaniel <kingdread@gmx.de>2020-05-13 12:52:13 +0200
commit331d6b1762d1d9431b210fc98a495d56ad7a1cd1 (patch)
tree24345d05808eaa0f034b5b33c3d335624b0111c6 /src/filters
parent279fed9f175a84799f37ffb3fbb22b64313f8c47 (diff)
downloadraidgrep-331d6b1762d1d9431b210fc98a495d56ad7a1cd1.tar.gz
raidgrep-331d6b1762d1d9431b210fc98a495d56ad7a1cd1.tar.bz2
raidgrep-331d6b1762d1d9431b210fc98a495d56ad7a1cd1.zip
clean up SearchField related code
With the addition of our own parser, we no longer need the FromStr implementation for SearchField. Furthermore, it is now only used in player::NameFilter, so the definition has been moved there. The import in the grammar was unused as well, so it has been removed.
Diffstat (limited to 'src/filters')
-rw-r--r--src/filters/player.rs13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/filters/player.rs b/src/filters/player.rs
index 2b14eb0..d3185e0 100644
--- a/src/filters/player.rs
+++ b/src/filters/player.rs
@@ -3,7 +3,7 @@
//! Additionally, it provides methods to lift a player filter to a log filter with [`any`][any] and
//! [`all`][all].
use super::{
- super::{guilds, playerclass::PlayerClass, EarlyLogResult, LogResult, Player, SearchField},
+ super::{guilds, playerclass::PlayerClass, EarlyLogResult, LogResult, Player},
log::LogFilter,
Filter, Inclusion,
};
@@ -61,6 +61,17 @@ pub fn any(player_filter: Box<dyn PlayerFilter>) -> Box<dyn LogFilter> {
!all(!player_filter)
}
+/// A flag indicating which fields should be searched.
+#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
+pub enum SearchField {
+ /// Only search the account name.
+ Account,
+ /// Only search the character name.
+ Character,
+ /// Only search the guild name or tag.
+ Guild,
+}
+
/// Filter that filters players according to their name.
///
/// The given SearchField determines in which field something should be searched.