We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
|x| async { ... }
Is formatted into
|x| { async { ... } }
Which then gives the compiler error that x is moved out of context. Currently the only way to fix it and use the formatter is to write
|x| { async move { ... } }