Skip to main content

AddDynamicConfigExt

Trait AddDynamicConfigExt 

Source
pub trait AddDynamicConfigExt {
    // Required methods
    fn add_dynamic_config<T>(&mut self) -> &mut Self
       where T: DynamicConfigService + 'static;
    fn has_dynamic_config<T>(&self) -> bool
       where T: DynamicConfigService + 'static;
}

Required Methods§

Source

fn add_dynamic_config<T>(&mut self) -> &mut Self
where T: DynamicConfigService + 'static,

Source

fn has_dynamic_config<T>(&self) -> bool
where T: DynamicConfigService + 'static,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl AddDynamicConfigExt for AppBuilder

Source§

fn add_dynamic_config<T>(&mut self) -> &mut Self
where T: DynamicConfigService + 'static,

Source§

fn has_dynamic_config<T>(&self) -> bool
where T: DynamicConfigService + 'static,

Implementors§