ChangeNotification

Type Alias ChangeNotification 

Source
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: String

The configuration key that changed

§old_value: Option<ConfigValue>

The previous value (None if the key was newly created)

§new_value: ConfigValue

The new value

§timestamp: SystemTime

When the change occurred

§changed_by: String

Who or what caused the change