pub type ActorFut<'a, T> = Pin<Box<PreBoxActorFut<'a, T>>>;Expand description
The boxed future type returned by actor actions.
Most APIs take or return ActorFut<'a, T> as the standard boxed future
used to execute actor code on the actor thread.
Aliased Typeยง
pub struct ActorFut<'a, T> { /* private fields */ }