pub trait RootConfig {
// Required methods
fn root_config(&self) -> Option<&RuntimeConfig>;
fn set_root_config(&mut self, config: Option<RuntimeConfig>);
}Expand description
The RootConfig trait is implemented by configurations that have root-level runtime configuration.
Required Methods§
Sourcefn root_config(&self) -> Option<&RuntimeConfig>
fn root_config(&self) -> Option<&RuntimeConfig>
Return the rendered wick_packet::RuntimeConfig.
Sourcefn set_root_config(&mut self, config: Option<RuntimeConfig>)
fn set_root_config(&mut self, config: Option<RuntimeConfig>)
Set a rendered wick_packet::RuntimeConfig.