```rust trait X { async fn hello(); } ``` turns into ```rust trait X { fn hello() -> impl Fu

trait X {
    async fn hello();
}

turns into
trait X {
    fn hello() -> impl Future<Output = ()>;
}
Was this page helpful?