pub trait Fut<'fut, Ret>where Self: 'fut + Future<Output = Ret>,{ }
Convenience shorthand alias.
trait /* alias */ Fut<'fut, Ret> = ::core::future::Future<Output = Ret> + 'fut;