pub trait Config<Key: Into<String>>: Send + Sync {
// Required methods
fn get(&self, name: Key) -> Result<String, OperationOutcomeError>;
fn set(&self, name: Key, value: String) -> Result<(), OperationOutcomeError>;
}pub trait Config<Key: Into<String>>: Send + Sync {
// Required methods
fn get(&self, name: Key) -> Result<String, OperationOutcomeError>;
fn set(&self, name: Key, value: String) -> Result<(), OperationOutcomeError>;
}