macro_rules! impl_future {
    (<$($t:tt)+) => { ... };
}
Expand description

Macro that return an impl Future type, with a Send bound on non-wasm targets.

§Examples

fn my_async_fn() -> futures_utils_wasm::impl_future!(<Output = ()>) {
    async {}
}