Type Definition kvarn::extensions::RetFut

source ·
pub type RetFut<'a, T> = Pin<Box<dyn Future<Output = T> + 'a>>;
Expand description

A return type for a dyn Future.

Used as the return type for all extensions, so they can be stored.