diff options
author | Daniel <kingdread@gmx.de> | 2020-04-04 14:13:59 +0200 |
---|---|---|
committer | Daniel <kingdread@gmx.de> | 2020-04-04 14:13:59 +0200 |
commit | c748642f3b801aa5ff4044ab60b0d0c29037a802 (patch) | |
tree | abfd9f5d4cb6f4f4024673ca99716c8ab1d510a4 /src/output/formats.rs | |
parent | 5d2f51ab8593946a0f24db367a887a37258901d5 (diff) | |
download | raidgrep-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.rs | 7 |
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; |