pub trait ManagedProc {
// Required method
fn run_proc(
self: Box<Self>,
shutdown: ShutdownSignal,
) -> LocalBoxFuture<'static, Result<()>>;
}
pub trait ManagedProc {
// Required method
fn run_proc(
self: Box<Self>,
shutdown: ShutdownSignal,
) -> LocalBoxFuture<'static, Result<()>>;
}