pub trait FactorRuntimeConfigSource<F: Factor> {
// Required method
fn get_runtime_config(&mut self) -> Result<Option<F::RuntimeConfig>>;
}Expand description
The source of runtime configuration for a particular Factor.
Required Methods§
Sourcefn get_runtime_config(&mut self) -> Result<Option<F::RuntimeConfig>>
fn get_runtime_config(&mut self) -> Result<Option<F::RuntimeConfig>>
Get the runtime configuration for the factor.