pub type ChangeNotification = ConfigChange;Expand description
Type alias for configuration change notifications
Aliased Type§
pub struct ChangeNotification {
pub key: String,
pub old_value: Option<ConfigValue>,
pub new_value: ConfigValue,
pub timestamp: SystemTime,
pub changed_by: String,
}Fields§
§key: StringThe configuration key that changed
old_value: Option<ConfigValue>The previous value (None if the key was newly created)
new_value: ConfigValueThe new value
timestamp: SystemTimeWhen the change occurred
changed_by: StringWho or what caused the change