pub fn ready<T>(t: T) -> Ready<T> ⓘAvailable on non-crate feature
ferrocene_certified only.Expand description
Creates a future that is immediately ready with a value.
Futures created through this function are functionally similar to those
created through async {}. The main difference is that futures created
through this function are named and implement Unpin.