Crate short_future

Source

Structs§

ShortBoxFuture
ShortBoxFuture<’b, ’a, T> is a future with a shorter lifetime than both ’a and ’b. It is equivalent to BoxFuture<’a + ’b, T> or BoxFuture<’b, T> where ’a > ’b.