live 0.3.1

A modular configuration framework with live reloading and atomic, format-agnostic updates.
Documentation
1
2
3
4
5
6
7
8
9
10
/* src/holder/policy.rs */

#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
pub enum UnloadPolicy {
	/// Removable - config is removed from memory when source file is deleted.
	#[default]
	Removable,
	/// Persistent - config is retained in memory even if source file is deleted.
	Persistent,
}