pubtraitAwaitBlocking: IntoFuture {/// Blocks the current thread polling the future to completion.
////// DO NOT USE INSIDE ASYNC CONTEXT.
fnawait_blocking(self)-><Selfas IntoFuture>::Output;}impl<T: IntoFuture> AwaitBlocking forT{fnawait_blocking(self)-><Selfas IntoFuture>::Output{futures_executor::block_on(self.into_future())}}