log-analysis 0.1.571

A zeek log analysis library implemented in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use serde::{Serialize, Deserialize};
#[derive(Debug,Clone,PartialEq,Eq, Serialize, Deserialize)]
pub struct 
ZeekLogHeader
{
    pub separator: char,
    pub set_separator: String,
    pub empty_field: String,
    pub unset_field: String,
    pub path: String, 
    pub open: String,
    pub fields: Vec<String>,
    pub types: Vec<String>,
}