macro_rules! try_ready {
($e:expr) => { ... };
}Expand description
A macro for extracting the successful type of a futures::Poll<T, E> and
turning it into a component_future::Poll<T, E>.
This macro propagates both errors and NotReady values by returning
early.