2021-11-20 09:34:43 +08:00

9 lines
166 B
Rust

#[macro_export]
macro_rules! dispatch_future {
($fut:expr) => {
DispatchFuture {
fut: Box::pin(async move { $fut.await }),
}
};
}