1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
use log::Level;
use serde::{Deserialize, Serialize};

#[derive(Clone, Debug, Deserialize, Serialize, PartialEq, Eq, PartialOrd, Ord)]
pub struct SchemaVersion {
    pub schema_version: u32,
}

pub mod v1 {
    use super::*;

    pub const SCHEMA_VERSION: SchemaVersion = SchemaVersion { schema_version: 1 };

    #[derive(Clone, Debug, Deserialize, Serialize)]
    pub struct JsonFrame {
        pub data: String,
        /// Unix timestamp in nanoseconds
        pub host_timestamp: i64,
        pub level: Option<Level>,
        pub location: Location,
        pub target_timestamp: String,
    }

    #[derive(Clone, Debug, Deserialize, Serialize)]
    pub struct Location {
        pub file: Option<String>,
        pub line: Option<u32>,
        pub module_path: Option<ModulePath>,
    }

    #[derive(Clone, Debug, Deserialize, Serialize)]
    pub struct ModulePath {
        pub crate_name: String,
        pub modules: Vec<String>,
        pub function: String,
    }
}