ConfigReadProxy

Trait ConfigReadProxy 

Source
pub trait ConfigReadProxy<TConfig>: Send + Sync {
    // Required method
    fn get(&self) -> &TConfig;
}

Required Methods§

Source

fn get(&self) -> &TConfig

Implementors§

Source§

impl<TRootConfig: Send + Sync, TConfig: Send, TPartialFn: Fn(&TRootConfig) -> &TConfig + Send + Sync> ConfigReadProxy<TConfig> for PartialReadProxy<'_, TRootConfig, TConfig, TPartialFn>