Struct system_configuration::dynamic_store::SCDynamicStoreCallBackContext [−][src]
pub struct SCDynamicStoreCallBackContext<T> {
pub callout: SCDynamicStoreCallBackT<T>,
pub info: T,
}Expand description
Struct describing the callback happening when a watched value in the dynamic store is changed.
Fields
callout: SCDynamicStoreCallBackT<T>The callback function that will be called when a watched value in the dynamic store is changed.
info: TThe argument passed to each callout call. Can be used to keep state between
callbacks.
