1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#[allow(unused_imports)]
use serde_json::Value;

#[derive(Debug, Serialize, Deserialize)]
pub struct ResultTopFilesFile {
    /// File access time.
    #[serde(rename = "atime")]
    pub atime: i32,
    /// File creation begin time.
    #[serde(rename = "btime")]
    pub btime: i32,
    /// Unix inode change time.
    #[serde(rename = "ctime")]
    pub ctime: i32,
    /// Logical file size in bytes.
    #[serde(rename = "log_size")]
    pub log_size: u64,
    /// Relative file path under /ifs/.
    #[serde(rename = "path")]
    pub path: String,
    /// Physical file size in bytes.
    #[serde(rename = "phys_size")]
    pub phys_size: u64,
}