pub trait IntoStaticFuture {
type Future: Future<Item = Self::Item, Error = Self::Error> + 'static + Send;
type Item;
type Error;
// Required method
fn into_static_future(self) -> Self::Future;
}
Expand description
Class of types which can be converted into a future. This trait is only differs from
futures::future::IntoFuture
in that the returned future has the 'static
lifetime.
Required Associated Types§
Required Methods§
Sourcefn into_static_future(self) -> Self::Future
fn into_static_future(self) -> Self::Future
Consumes this object and produces a future.