pub trait AddDaemonExt {
// Required method
fn add_daemon<T>(&self, daemon: impl Into<Arc<T>>)
where T: Daemon + 'static;
}Required Methods§
fn add_daemon<T>(&self, daemon: impl Into<Arc<T>>)where
T: Daemon + 'static,
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".