cargo fmt --all

This commit is contained in:
ichiichi11
2021-05-13 22:07:41 +09:00
parent e960586ede
commit ee23fc9a66

View File

@@ -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 テストケースかかなきゃ...