/* src/holder/meta.rs */usestd::path::PathBuf;usestd::time::Instant;usesuper::UnloadPolicy;/// Metadata associated with a config entry.
#[derive(Debug, Clone)]pubstructMeta{/// Source file path.
pubsource: PathBuf,
/// Timestamp when the config was loaded.
publoaded_at: Instant,
/// Version number, auto-incremented on each change.
pubversion:u64,
/// Unload policy for this entry.
pubpolicy: UnloadPolicy,
}