//! File metadata types for code facts.
useserde::{Deserialize, Serialize};/// Metadata about an indexed file
#[derive(Debug, Clone, Serialize, Deserialize)]pubstructIndexedFile{/// File path relative to the repo root.
pubpath: String,
/// True if this entry is a directory rather than a file.
pubis_dir:bool,
/// Modification timestamp in seconds since Unix epoch.
pubmtime:i64,
/// Line count; 0 for directories.
publines:usize,
}