pub trait ModuleConfig<'a> where
    Self: Sized + Clone
{ fn from_config(_config: &'a Value) -> Option<Self> { ... }
fn load_config(&mut self, config: &'a Value) { ... } }
Expand description

Parsable config.

Provided methods

Construct a ModuleConfig from a toml value.

Merge self with config from a toml table.

Implementations on Foreign Types

Implementors