Type Definition thespis::Return

source · []
pub type Return<'a, R> = Pin<Box<dyn Future<Output = R> + Send + 'a>>;
Expand description

A boxed future that is Send, shorthand for async trait method return types.