macros.rs 166 B

12345678
  1. #[macro_export]
  2. macro_rules! dispatch_future {
  3. ($fut:expr) => {
  4. DispatchFuture {
  5. fut: Box::pin(async move { $fut.await }),
  6. }
  7. };
  8. }