From ee23fc9a66cf03801eed54539a679beb4157a651 Mon Sep 17 00:00:00 2001 From: ichiichi11 Date: Thu, 13 May 2021 22:07:41 +0900 Subject: [PATCH] cargo fmt --all --- src/detections/detection.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/detections/detection.rs b/src/detections/detection.rs index 284d8e0d..8be81e26 100644 --- a/src/detections/detection.rs +++ b/src/detections/detection.rs @@ -19,8 +19,8 @@ const DIRPATH_RULES: &str = "rules"; // イベントファイルの1レコード分の情報を保持する構造体 #[derive(Clone, Debug)] pub struct EvtxRecordInfo { - evtx_filepath: String,// イベントファイルのファイルパス ログで出力するときに使う - record: Value, // 1レコード分のデータをJSON形式にシリアライズしたもの + evtx_filepath: String, // イベントファイルのファイルパス ログで出力するときに使う + record: Value, // 1レコード分のデータをJSON形式にシリアライズしたもの } // TODO テストケースかかなきゃ...