Config

Trait Config 

Source
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>;
}

Required Methods§

Source

fn get(&self, name: Key) -> Result<String, OperationOutcomeError>

Source

fn set(&self, name: Key, value: String) -> Result<(), OperationOutcomeError>

Implementors§