diff options
author | Daniel <kingdread@gmx.de> | 2020-05-01 13:29:38 +0200 |
---|---|---|
committer | Daniel <kingdread@gmx.de> | 2020-05-01 13:29:38 +0200 |
commit | 5f765b749f793b2866262546d28ff138a5654dfc (patch) | |
tree | 192add4f0c51169f8f2702596d05bee00af6561a /src/fexpr/mod.rs | |
parent | 811d7e62695c5c12aecd08b176c4ead641e2ad2c (diff) | |
download | raidgrep-5f765b749f793b2866262546d28ff138a5654dfc.tar.gz raidgrep-5f765b749f793b2866262546d28ff138a5654dfc.tar.bz2 raidgrep-5f765b749f793b2866262546d28ff138a5654dfc.zip |
change LogFilter to take EarlyLogResult
This allows us to attach some additional metadata that is not found in
the PartialEvtc otherwise, such as the file name.
Diffstat (limited to 'src/fexpr/mod.rs')
-rw-r--r-- | src/fexpr/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fexpr/mod.rs b/src/fexpr/mod.rs index 5610aba..391b739 100644 --- a/src/fexpr/mod.rs +++ b/src/fexpr/mod.rs @@ -3,7 +3,7 @@ //! This module contains methods to parse a given string into an abstract filter tree, check its //! type and convert it to a [`Filter`][super::filters::Filter]. // Make it available in the grammar mod. -use super::{filters, FightOutcome, SearchField, Weekday}; +use super::{filters, FightOutcome, SearchField}; use std::{error, fmt}; |