pub type PreBoxActorFut<'a, T> = dyn Future<Output = T> + Send + 'a;Expand description
The unboxed future type used for actor actions.
This is a convenience type alias for a Send future that returns T.
Prefer using ActorFut which wraps this in a pinned Box.