pub trait ActorRunBoxed<Ctx>: Send {
// Required method
fn run<'run>(
self: Box<Self>,
context: &'run mut Ctx,
) -> Pin<Box<dyn Future<Output = Never> + Send + 'run>>
where Self: 'run;
}pub trait ActorRunBoxed<Ctx>: Send {
// Required method
fn run<'run>(
self: Box<Self>,
context: &'run mut Ctx,
) -> Pin<Box<dyn Future<Output = Never> + Send + 'run>>
where Self: 'run;
}