aboutsummaryrefslogtreecommitdiff
path: root/src/output/formats.rs
diff options
context:
space:
mode:
authorDaniel <kingdread@gmx.de>2020-04-04 14:13:59 +0200
committerDaniel <kingdread@gmx.de>2020-04-04 14:13:59 +0200
commitc748642f3b801aa5ff4044ab60b0d0c29037a802 (patch)
treeabfd9f5d4cb6f4f4024673ca99716c8ab1d510a4 /src/output/formats.rs
parent5d2f51ab8593946a0f24db367a887a37258901d5 (diff)
downloadraidgrep-c748642f3b801aa5ff4044ab60b0d0c29037a802.tar.gz
raidgrep-c748642f3b801aa5ff4044ab60b0d0c29037a802.tar.bz2
raidgrep-c748642f3b801aa5ff4044ab60b0d0c29037a802.zip
make pipeline working
Diffstat (limited to 'src/output/formats.rs')
-rw-r--r--src/output/formats.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/output/formats.rs b/src/output/formats.rs
index fe6e982..a5171a8 100644
--- a/src/output/formats.rs
+++ b/src/output/formats.rs
@@ -10,13 +10,6 @@ pub trait Format: Sync + Send {
}
-impl<T: Format + ?Sized> Format for Box<T> {
- fn format_result(&self, item: &LogResult) -> String {
- (&*self).format_result(item)
- }
-}
-
-
/// The human readable, colored format.
#[derive(Copy, Clone, Debug, Hash, PartialEq, Eq)]
pub struct HumanReadable;