kvarn::extensions

Type Alias 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.

Aliased Typeยง

struct RetFut<'a, T> {}