/* src/holder/entry.rs */usestd::sync::Arc;usesuper::Meta;/// A config entry containing value and metadata.
#[derive(Debug, Clone)]pubstructEntry<T>{/// The config value wrapped in Arc for efficient sharing.
pubvalue:Arc<T>,
/// Metadata about this entry.
pubmeta: Meta,
}