From f273ffd74d871bedf6a0f701ca616a382bd77335 Mon Sep 17 00:00:00 2001 From: DustInDark Date: Tue, 7 Jun 2022 20:00:04 +0900 Subject: [PATCH] fixed cargo clippy error --- src/detections/pivot.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/detections/pivot.rs b/src/detections/pivot.rs index c732ddfa..845ded27 100644 --- a/src/detections/pivot.rs +++ b/src/detections/pivot.rs @@ -7,7 +7,7 @@ use std::sync::RwLock; use crate::detections::configs; use crate::detections::utils::get_serde_number_to_string; -#[derive(Debug)] +#[derive(Debug, Clone)] pub struct PivotKeyword { pub keywords: HashSet, pub fields: HashSet,