pub trait ConfigurationValue<T>: Sync + Send {
// Required methods
fn get(&self, ctx: &ConfigurationContext) -> T;
fn set(&self, ctx: &ConfigurationContext, val: T) -> Result<(), RedisError>;
}
pub trait ConfigurationValue<T>: Sync + Send {
// Required methods
fn get(&self, ctx: &ConfigurationContext) -> T;
fn set(&self, ctx: &ConfigurationContext, val: T) -> Result<(), RedisError>;
}