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

#[derive(Debug, Serialize, Deserialize)]
pub struct ResultTopDirsDir {
    /// Directory access time
    #[serde(rename = "atime")]
    pub atime: i32,
    /// Directory creation begin time.
    #[serde(rename = "btime")]
    pub btime: i32,
    /// Unix inode change time.
    #[serde(rename = "ctime")]
    pub ctime: i32,
    /// Relative directory path under /ifs/.
    #[serde(rename = "path")]
    pub path: String,
}