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§
fn add_dynamic_config<T>(&mut self) -> &mut Selfwhere
T: DynamicConfigService + 'static,
fn has_dynamic_config<T>(&self) -> boolwhere
T: DynamicConfigService + 'static,
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".